<section class="mv">
<div class="container-1360">
<div class="text">
<h5>{{ en_page_name|default('Online shop') }}</h5>
<h1>{{ page_name|default('オンラインショップ') }}</h1>
</div>
<div class="mv-logo">
<img src="{{ asset('assets/img/logo__img-white.png') }}"/>
</div>
</div>
<hr class="bg-blue" />
<hr class="bg-red" />
</section>
<div class="breadcrumb">
<div>
<a href="{{ eccube_config.base_domain }}"><i class="fas fa-home"></i> HOME</a>
{% set page_url = app.request.get('_route') %}
{% if Category is defined and Category is not empty %}
<a>|</a>
<a href="{{ url('homepage') }}">オンラインショップ</a>
<a>|</a>
<a href="{{ url('product_list', { 'category_id': Category.id }) }}">{{ Category.name }}</a>
{% if Product is defined and Product is not empty %} {% set page_name = Product.name %} {% endif %}
{% elseif page_url == 'entry_confirm' %}
<a>|</a>
<a href="{{ url('entry') }}">ログイン</a>
{% elseif page_url == 'entry_complete' %}
<a>|</a>
<a href="{{ url('entry') }}">ログイン</a>
<a>|</a>
<a href="{{ url('entry_confirm') }}">新規会員登録</a>
{% elseif page_url == 'shopping' %}
<a>|</a>
<a href="{{ url('cart') }}">ショッピングカート</a>
{% elseif page_url == 'shopping_confirm' %}
<a>|</a>
<a href="{{ url('cart') }}">ショッピングカート</a>
<a>|</a>
<a href="{{ url('shopping') }}">ご注文手続き</a>
{% elseif page_url == 'shopping_complete' %}
<a>|</a>
<a href="{{ url('cart') }}">ショッピングカート</a>
{% endif %}
<a>|</a>
<a href="#">{{ page_name }}</a>
</div>
</div>