{% import "@SyliusShop/Common/Macro/icons.html.twig" as icons %}
{% macro item(taxon, isChild) %}
{% import _self as macros %}
{% set showTaxon = true %}
{% if taxon.code == 'promotions' %}
{% if taxon|app_get_product_amount(sylius.localeCode, sylius.channel) == 0 %}
{% set showTaxon = false %}
{% endif %}
{% endif %}
{% if showTaxon == true %}
<li>
<a href="{{ path('monsieurbiz_sylius_search_taxon', {'slug': taxon.slug, '_locale': taxon.translation.locale}) }}" title="{{taxon.name}}">{{taxon.name}}</a>
</li>
{% endif %}
{% endmacro %}
{% import _self as macros %}
{% if taxons|length > 0 %}
{% for taxon in taxons %}
{{ macros.item(taxon) }}
{% endfor %}
{% endif %}