<div class="ui breadcrumb">
<a href="{{ path('sylius_shop_homepage') }}" class="section"><i class="fas fa-home"></i><strong>Mons Fromages</strong></a>
<div class="divider"> / </div>
<a href="{{ path('app_shop_product_search') }}" class="section">{{ 'sylius.ui.boutiqueenligne'|trans }}</a>
<div class="divider"> / </div>
{#
{% if product.mainTaxon is not null %}
{% set taxon = product.mainTaxon %}
{% set ancestors = taxon.ancestors|reverse %}
{% for ancestor in ancestors %}
{% if ancestor.isRoot() or not ancestor.enabled %}
{% else %}
<a href="{{ path('sylius_shop_product_index', {'slug': ancestor.slug, '_locale': ancestor.translation.locale}) }}" class="section">{{ ancestor.name }}</a>
<div class="divider"> / </div>
{% endif %}
{% endfor %}
<a href="{{ path('sylius_shop_product_index', {'slug': taxon.slug, '_locale': taxon.translation.locale}) }}" class="section">{{ taxon.name }}</a>
<div class="divider"> / </div>
{% endif %}
#}
<div class="active section">{{ product.name }}</div>
</div>