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

Open in your IDE?
  1. <section class="mv">
  2.         <div class="container-1360">
  3.             <div class="text">
  4.                 <h5>{{ en_page_name|default('Online shop') }}</h5>
  5.                 <h1>{{ page_name|default('オンラインショップ') }}</h1>
  6.             </div>
  7.             <div class="mv-logo">
  8.                 <img src="{{ asset('assets/img/logo__img-white.png') }}"/>
  9.             </div>
  10.         </div>
  11.         <hr class="bg-blue" />
  12.         <hr class="bg-red" />
  13.     </section>
  14.     <div class="breadcrumb">
  15.         <div>
  16.             <a href="{{ eccube_config.base_domain }}"><i class="fas fa-home"></i> HOME</a>
  17.             {% set page_url = app.request.get('_route') %}
  18.             {% if Category is defined and Category is not empty %}
  19.                 <a>|</a>
  20.                 <a href="{{ url('homepage') }}">オンラインショップ</a>
  21.                 <a>|</a>
  22.                 <a href="{{ url('product_list', { 'category_id': Category.id }) }}">{{ Category.name }}</a>
  23.                 {% if Product is defined and Product is not empty %} {% set page_name = Product.name %} {% endif %}
  24.             {% elseif page_url == 'entry_confirm' %}
  25.                 <a>|</a>
  26.                 <a href="{{ url('entry') }}">ログイン</a>
  27.             {% elseif page_url == 'entry_complete' %}
  28.                 <a>|</a>
  29.                 <a href="{{ url('entry') }}">ログイン</a>
  30.                 <a>|</a>
  31.                 <a href="{{ url('entry_confirm') }}">新規会員登録</a>
  32.             {% elseif page_url == 'shopping' %}
  33.                 <a>|</a>
  34.                 <a href="{{ url('cart') }}">ショッピングカート</a>
  35.             {% elseif page_url == 'shopping_confirm' %}
  36.                 <a>|</a>
  37.                 <a href="{{ url('cart') }}">ショッピングカート</a>
  38.                 <a>|</a>
  39.                 <a href="{{ url('shopping') }}">ご注文手続き</a>
  40.             {% elseif page_url == 'shopping_complete' %}
  41.                 <a>|</a>
  42.                 <a href="{{ url('cart') }}">ショッピングカート</a>
  43.             {% endif %}
  44.             <a>|</a>
  45.             <a href="#">{{ page_name }}</a>
  46.         </div>
  47.     </div>