{% if breadcrumb is defined %}
<nav style="margin-top: 15px;">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="{{ path('_home') }}">Accueil</a></li>
{% for label, link in breadcrumb %}
{% if link is not empty %}
{% set text = '<a href="'~link~'">'~label~'</a>' %}
{% else %}
{% set text = '<span>'~label~'</span>' %}
{% endif %}
<li class="breadcrumb-item{% if loop.last %} active{% endif %}">
{{ text|raw }}
</li>
{% endfor %}
</ol>
</nav>
{% endif %}