templates/includes/breadcrumb.inc.html.twig line 1

Open in your IDE?
  1. <nav id="breadcrumb" aria-label="Vous ĂȘtes ici :" role="navigation">
  2.     <ul class="breadcrumbs" style="padding-left: 0; overflow-y: hidden;">
  3.         <li>
  4.             <a href="{{ url_module }}">{% trans %}accueil_nav{% endtrans %}</a>
  5.         </li>
  6.         {% if locate is defined and locate %}
  7.             {% for link,name in locate %}
  8.                 <li>
  9.                     {% if link is defined and link %}
  10.                         <a href="{{ link|raw }}">{{ name|raw }}</a>
  11.                     {% else %}
  12.                         {{ name|raw }}
  13.                     {% endif %}
  14.                 </li>
  15.             {% endfor %}
  16.         {% endif %}
  17.     </ul>
  18. </nav>