app/template/default/Block/header.twig line 1

Open in your IDE?
  1. {#
  2. This file is part of EC-CUBE
  3. Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  4. http://www.ec-cube.co.jp/
  5. For the full copyright and license information, please view the LICENSE
  6. file that was distributed with this source code.
  7. #}
  8. <div class="ec-headerNaviRole">
  9.     
  10.     <div class="ec-headerNaviRole__left">
  11.         <div class="ec-headerTitle pb-3">
  12.             <h1 class="text-dark">
  13.                 <a href="{{ url('homepage') }}">
  14.                     <img src="{{ asset('assets/img/top/fujitaka_logo.png') }}" alt="フジタカ通商">
  15.                 </a>
  16.             </h1>
  17.         </div>
  18.         {# 
  19.         <div class="ec-headerNaviRole__search">
  20.             
  21.             {{ render(path('block_search_product')) }}
  22.         </div>
  23.          #}
  24.         <div class="ec-headerRole__navSP">
  25.             {{ include('Block/nav_sp.twig') }}
  26.         </div>
  27.     </div>
  28.     <div class="ec-headerNaviRole__right">
  29.         <div class="ec-headerNaviRole__nav">
  30.             {{ include('Block/login.twig') }}
  31.         </div>
  32.         <div class="ec-headerRole__cart">
  33.             {{ include('Block/cart.twig') }}
  34.         </div>
  35.     </div>
  36. </div>