vendor/sylius/sylius/src/Sylius/Bundle/ShopBundle/Resources/views/Taxon/_verticalMenu.html.twig line 1

  1. {{ sylius_template_event('sylius.shop.product.index.before_vertical_menu', {'taxon': taxon}) }}
  2. <div class="ui fluid vertical menu" {{ sylius_test_html_attribute('vertical-menu') }}>
  3.     <div class="header item">{{ taxon.name }}</div>
  4.     {% for child in taxon.enabledChildren %}
  5.     <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>
  6.     {% endfor %}
  7.     {% if taxon.parent is not empty and not taxon.parent.isRoot() and taxon.parent.enabled %}
  8.         <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') }}>
  9.             <i class="up arrow icon"></i> {{ 'sylius.ui.go_level_up'|trans }}
  10.         </a>
  11.     {% endif %}
  12. </div>
  13. {{ sylius_template_event('sylius.shop.product.index.after_vertical_menu', {'taxon': taxon}) }}