templates/bundles/SyliusShopBundle/Taxon/_verticalMenu.html.twig line 1
{{ sonata_block_render_event('sylius.shop.product.index.before_vertical_menu', {'taxon': taxon}) }}{% if taxon.code != 'category' %}<div class="sidebar-widget category-widget"><div class="widget-title"><h5 class="widget-title">{{ taxon.name }}</h5></div><div class="widget-content"><ul class="category-list clearfix">{% if taxon.parent is not empty and not taxon.parent.isRoot() and taxon.parent.enabled %}<li><a href="{{ path('sylius_shop_product_index', {'slug': taxon.parent.slug, '_locale': taxon.parent.translation.locale}) }}"><span><i class="up arrow icon"></i>{{ 'sylius.ui.go_level_up'|trans }}</span></a></li>{% endif %}{% for child in taxon.enabledChildren %}<li><a href="{{ path('sylius_shop_product_index', {'slug': child.slug, '_locale': child.translation.locale}) }}"><span>{{ child.name }}</span><span></span></a></li>{% endfor %}</ul></div></div>{% endif %}{{ sonata_block_render_event('sylius.shop.product.index.after_vertical_menu', {'taxon': taxon}) }}