vendor/sylius/sylius/src/Sylius/Bundle/ShopBundle/Resources/views/Taxon/_verticalMenu.html.twig line 1
{{ sylius_template_event('sylius.shop.product.index.before_vertical_menu', {'taxon': taxon}) }}
<div class="ui fluid vertical menu" {{ sylius_test_html_attribute('vertical-menu') }}>
<div class="header item">{{ taxon.name }}</div>
{% for child in taxon.enabledChildren %}
<a href="{{ path('sylius_shop_product_index', {'slug': child.slug, '_locale': child.translation.locale}) }}" class="item" {{ sylius_test_html_attribute('vertical-menu-item') }}>{{ child.name }}</a>
{% endfor %}
{% if taxon.parent is not empty and not taxon.parent.isRoot() and taxon.parent.enabled %}
<a href="{{ path('sylius_shop_product_index', {'slug': taxon.parent.slug, '_locale': taxon.parent.translation.locale}) }}" class="item" {{ sylius_test_html_attribute('vertical-menu-go-level-up') }}>
<i class="up arrow icon"></i> {{ 'sylius.ui.go_level_up'|trans }}
</a>
{% endif %}
</div>
{{ sylius_template_event('sylius.shop.product.index.after_vertical_menu', {'taxon': taxon}) }}