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

Open in your IDE?
  1. <!-- ヘッダー -->
  2. {% set cartQuantity = get_carts_total_quantity() %}
  3. <header class="btob-header">
  4.     <a href="{{ url('homepage') }}" class="btob-header__home" aria-label="ホーム">
  5.         <h1 class="btob-header__title">イワオカ<br>エクスプレス</h1>
  6.     </a>
  7.     <nav class="btob-header__nav">
  8.     <a href="{{ url('mypage_change') }}" class="btob-header__nav-item" aria-label="マイページ">
  9.         <svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor">
  10.         <path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/>
  11.         </svg>
  12.     </a>
  13.     <a href="{{ url('my_order_list_favorite') }}" class="btob-header__nav-item" aria-label="お気に入り">
  14.         <svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor">
  15.         <path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/>
  16.         </svg>
  17.     </a>
  18.     <a href="{{ url('mypage') }}" class="btob-header__nav-item" aria-label="注文履歴">
  19.         <svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor">
  20.         <path d="M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z"/>
  21.         </svg>
  22.     </a>
  23.     <a href="{{ url('cart') }}" class="btob-header__cart" aria-label="カート">
  24.         <svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor">
  25.         <path d="M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.08-.14.12-.31.12-.48 0-.55-.45-1-1-1H5.21l-.94-2H1zm16 16c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z"/>
  26.         </svg>
  27.         <span class="btob-header__cart-badge">{{ cartQuantity|number_format }}</span>
  28.     </a>
  29.     <button type="button" class="btob-header__menu" id="drawerToggle" aria-label="メニュー">
  30.         <span class="btob-header__menu-icon"></span>
  31.     </button>
  32.     </nav>
  33. </header>