{% import "@SyliusShop/Common/Macro/icons.html.twig" as icons %}
{% macro item(taxon, isChild) %}
{% import _self as macros %}
{% if taxon.children|length > 0 %}
<li {% if taxon.visibleInMenu == false %}class="d-none" {% endif %}> <a href="{{ path('sylius_shop_product_index', {'slug': taxon.slug, '_locale': taxon.translation.locale}) }}" title="{{ taxon.name|raw }}">{{ taxon.name|raw }}</a></li>
{% else %}
<li {% if taxon.visibleInMenu == false %}class="d-none" {% endif %}> <a href="{{ path('sylius_shop_product_index', {'slug': taxon.slug, '_locale': taxon.translation.locale}) }}" title="{{ taxon.name|raw }}">{{ taxon.name|raw }}</a></li>
{% endif %}
{% endmacro %}
{% import _self as macros %}
{% if taxons|length > 0 %}
{% for taxon in taxons if taxon.enabled and taxon.code != 'ma-machine' %}
{{ macros.item(taxon) }}
{% endfor %}
{% endif %}