templates/front/layout/include/_breadcrumb.html.twig line 1

Open in your IDE?
  1. {% if breadcrumb is defined %}
  2.     <div id="breadcrumb" class="d-none d-md-block">
  3.         {% for link in breadcrumb %}
  4.             {% if link is iterable %}
  5.                 <a href="{{ link|first }}">{{ link|keys|first }}</a>
  6.             {% else %}
  7.                 {{ link }}
  8.             {% endif %}
  9.             {% if not loop.last %}
  10.                 >
  11.             {% endif %}
  12.         {% endfor %}
  13.     </div>
  14. {% endif %}