templates/_breadcrumb.html.twig line 1

Open in your IDE?
  1. <nav role="navigation" aria-label="Fil d'Ariane" class="breadcrumb">
  2.     <li {% if not breadcrumb|length > 0 %}class="active"{% endif %}>
  3.         {% if breadcrumb|length > 0 %}
  4.         <a aria-label="{{ 'reporting.dashboard.breadcrumb.index'|trans }}" href="{{ path('reporting_dashboard_index') }}">
  5.         {% endif %}
  6.             <i class="fa fa-tachometer-alt"></i>
  7.             {{ 'reporting.dashboard.breadcrumb.index'|trans }}
  8.         {% if breadcrumb|length > 0 %}
  9.         </a>
  10.         {% endif %}
  11.     </li>
  12.     {% for item in breadcrumb %}
  13.         <li {% if loop.last %}class="active"{% endif %}>
  14.             {% if item.link is defined %}
  15.             <a aria-label="{{ item.name }}" href="{{ item.link }}">
  16.             {% endif %}
  17.                 {{ item.name }}
  18.             {% if item.link is defined %}
  19.             </a>
  20.             {% endif %}
  21.         </li>
  22.     {% endfor %}
  23. </nav>