{#
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="c-gnav">
<div class="c-gnav__inner">
<div class="ec-headerNaviRole__logo">
<a href="{{ url('homepage') }}"><img src="{{ asset('assets/img/common/logo0321.png') }}" width="200" alt="" /></a>
</div>
<div class="ec-itemNav">
<ul class="ec-itemNav__nav">
<li>
<a href="{{ url('homepage') }}?category_id=7">トップ</a>
</li>
<li>
<a href="{{ url('product_list') }}">商品一覧</a>
</li>
<li>
<a href="{{ url('product_list') }}?category_id=7">iPhone</a>
</li>
<li>
<a href="{{ url('product_list') }}?category_id=8">Android</a>
</li>
<li>
<a href="{{ url('product_list') }}?category_id=9">iPad</a>
</li>
</ul>
<div>
<div class="ec-headerNav__item">
<a href="{{ url('mypage_favorite') }}">
<div class="ec-headerNav__itemIcon">
<img src="{{ asset('assets/img/icon/heart.svg') }}" width="28" height="28" alt="" />
</div>
<span class="ec-headerNav__itemLink">{{ ''|trans }}</span>
</a>
</div>
</div>
<div class="ec-headerRole__cart">{{ include('Block/cart.twig') }}</div>
<div class="ec-headerNaviRole__search">{{ render(path('block_search_product')) }}</div>
</div>
</div>
</div>