<div class="ctn breadcrumbs">
<a href="{{ path('index') }}">{% trans %}Accueil{% endtrans %}</a>
<span>/</span>
{% if path is defined %}
{% for p in path %}
{% if loop.index == 1 %}
<a href="{{ path('universe',{url:p.url,id:p.id}) }}">{{ p.name }}</a>
{% else %}
<a href="{{ path('category',{url:p.url,id:p.id}) }}">{{ p.name }}</a>
{% endif %}
<span>/</span>
{% endfor %}
{% endif %}
{% if product is defined %}
<span class="curent">{{ product.name }}</span>
{% elseif category is defined %}
<span class="curent">{{ category.name }}</span>
{% elseif manufacturer is defined %}
<a href="{{ path('manufacturers') }}">{% trans %}Nos marques{% endtrans %}</a>
<span>/</span>
<span class="curent">{{ manufacturer.name }}</span>
{% elseif query is defined %}
<span>Recherche</span>
<span>/</span>
<span class="curent">{{ query }}</span>
{% elseif page is defined %}
<span class="curent">{{ page }}</span>
{% elseif discount is defined %}
<span class="curent">{{ discount.title }}</span>
{% endif %}
</div>