themes/BootstrapChildTheme/SyliusShopBundle/views/Taxon/_footer_menu.html.twig line 1

Open in your IDE?
  1. {% if taxons|length > 0 %}
  2.     <ul class="footer-nav mb-6 mb-lg-0">
  3.         {% for taxon in taxons %}
  4.             <li class="nav-item">
  5.                 <a class="nav-link" href="{{ path('sylius_shop_product_index', {'slug': taxon.redirect ?: taxon.slug, '_locale': taxon.translation.locale}) }}">{{ taxon.name }}</a>
  6.             </li>
  7.             {#{{ macros.item(taxon) }}#}
  8.         {% endfor %}
  9.     </ul>
  10. {% endif %}