src/Eccube/Resource/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. {% block stylesheet %}
  9. <style>
  10.     .ec-headerNaviRole {
  11.         padding: 0 20px 0;
  12.     }
  13.     .ec-headerTitle__title h1 a {
  14.         display: inline-block;
  15.         max-width: 200px;
  16.     }
  17. </style>
  18. {% endblock %}
  19. <div class="ec-headerNaviRole">
  20.     <div class="ec-headerNaviRole__left">
  21.         <div class="ec-headerTitle__title">
  22.             <h1>
  23.                 <a href="{{ url('homepage') }}">
  24.                     <img src="/html/template/default/assets/img/top/cocofuru_logo_300x150.png" alt"{{ BaseInfo.shop_name }}">
  25.                 </a>
  26.             </h1>
  27.         </div>
  28.         {# <div class="ec-headerNaviRole__search">
  29.             {{ render(path('block_search_product')) }}
  30.         </div> #}
  31.         <div class="ec-headerRole__navSP">
  32.             {{ include('Block/nav_sp.twig') }}
  33.         </div>
  34.     </div>
  35.     <div class="ec-headerNaviRole__right">
  36.         <div class="ec-headerNaviRole__nav">
  37.             {{ include('Block/login.twig') }}
  38.         </div>
  39.         <div class="ec-headerRole__cart">
  40.             {{ include('Block/cart.twig') }}
  41.         </div>
  42.     </div>
  43. </div>