templates/layout/partials/breadcrumb.html.twig line 1

Open in your IDE?
  1. {% if breadcrumb is defined %}
  2.     <nav style="margin-top: 15px;">
  3.         <ol class="breadcrumb">
  4.             <li class="breadcrumb-item"><a href="{{ path('_home') }}">Accueil</a></li>
  5.             {% for label, link in breadcrumb %}
  6.                 {% if link is not empty %}
  7.                     {% set text = '<a href="'~link~'">'~label~'</a>' %}
  8.                 {% else %}
  9.                     {% set text = '<span>'~label~'</span>' %}
  10.                 {% endif %}
  11.                 <li class="breadcrumb-item{% if loop.last %} active{% endif %}">
  12.                     {{ text|raw }}
  13.                 </li>
  14.             {% endfor %}
  15.         </ol>
  16.     </nav>
  17. {% endif %}