{#
This file is part of EC-CUBE
Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
http://www.ec-cube.co.jp/
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
#}
{% set Categories = repository('Eccube\\Entity\\Category').getList() %}
{% macro tree(Category) %}
{% from _self import tree %}
<a href="{{ url('product_list') }}?category_id={{ Category.id }}">
{{ Category.name }}
</a>
{% if Category.children|length > 0 %}
<ul>
{% for ChildCategory in Category.children %}
<li>
{{ tree(ChildCategory) }}
</li>
{% endfor %}
</ul>
{% endif %}
{% endmacro %}
{# @see https://github.com/bolt/bolt/pull/2388 #}
{% from _self import tree %}
<div class="ec-categoryNaviRole header">
<div class="header-nav-local">
<ul>
<li><a href="/about">はじめての方</a></li>
<li><a href="/shopping-guide">ご利用ガイド</a></li>
<li><a href="/shopping-guide/mypage">マイページ設定方法</a></li>
<li><a href="/faq">よくある質問</a></li>
<li><a href="/sitemap">サイトマップ</a></li>
</ul>
</div>
<nav class="header-nav-main">
<ul>
<li>
<a href="/">トップ</a>
</li>
<li class="ico_new">
<a href="/products/list">商品一覧</a>
</li>
<li class="ico_new">
<a href="/campaign">キャンペーン</a>
</li>
<li>
<a href="/useful">お役立ち情報</a>
</li>
<li>
<a href="/shopping-guide/regular">お得な定期</a>
</li>
</ul>
</nav>
</div>