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

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.     <div class="ec-headerNaviRole__left">
  10.         <!--<div class="ec-headerNaviRole__search">
  11.             {{ render(path('block_search_product')) }}
  12.         </div>-->
  13.         <div class="ec-headerTitle__title">
  14.                 <h1>
  15.                     <a href="{{ url('homepage') }}">
  16.                         <img src="{{ asset('assets/img/top/saikaonline_logo.png') }}">
  17.                         {#{ BaseInfo.shop_name }#}
  18.                     </a>
  19.                 </h1>
  20.             </div>
  21.         <div class="ec-headerRole__navSP">
  22.             {{ include('Block/nav_sp.twig') }}
  23.         </div>
  24.     </div>
  25.     <div class="ec-headerNaviRole__right">
  26.         <div class="ec-headerNaviRole__nav">
  27.             {{ include('Block/login.twig') }}
  28.         </div>
  29.         <div class="ec-headerRole__cart">
  30.             {{ include('Block/cart.twig') }}
  31.         </div>
  32.     </div>
  33. </div>