templates/Navigation/Partials/breadcrumb.html.twig line 1

Open in your IDE?
  1. {% set breadcrumb = app_getBreadcrumb( pages )|default([]) %}
  2. {% if breadcrumb is not empty %}
  3.     {% set lastItem = (breadcrumb|length) - 1 %}
  4.     {% for index,item in breadcrumb %}
  5.         {% if index == lastItem %}
  6.             <li  class="breadcrumb-item active">{{ item['label'] }}</li>
  7.         {% else %}
  8.             <li class="breadcrumb-item"><a href="{{ item['uri'] }}" target="{{ item['target'] }}">{{ item['label'] }}</a></li>
  9.         {% endif %}
  10.     {% endfor %}
  11. {% endif %}