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

Open in your IDE?
  1. {#
  2. This file is part of EC-CUBE
  3. Copyright(c) LOCKON CO.,LTD. All Rights Reserved.
  4. http://www.lockon.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="b-header">
  9.     <h1 class="b-header__logo">
  10.         <a class="b-header__logo-link" href="{{ url('homepage') }}">
  11.             {{ BaseInfo.shop_name }}
  12.         </a>
  13.     </h1>
  14.     <span class="b-header__spacer"></span>
  15.     <div class="b-header__utility">
  16.         <div class="b-header__utility-navi">
  17.             {{ include('Block/login.twig') }}
  18.         </div>
  19.         <div class="b-header__utility-search">
  20.             <a class="b-header__utility-search-link" href="#js-search-product" id="js-header__utility-search-link"></a>
  21.         </div>
  22.         <div class="b-header__utility-cart" id="js-header__utility-cart">
  23.             {{ include('Block/cart.twig') }}
  24.         </div>
  25.     </div>
  26. </div>