{#
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() %}
<div class="ec-categoryNaviRole">
<div class="ec-itemNav">
{% for Category in Categories %}
{% if Category.id == 16 and Category.children|length > 0 %}
<ul class="ec-itemNav__nav">
{% for ChildCategory in Category.children %}
<li>
<a href="{{ url('product_list', {'category_id': ChildCategory.id}) }}">{{ ChildCategory.name }}</a>
</li>
{% endfor %}
</ul>
{% endif %}
{% endfor %}
</div>
</div>