templates/components/breadcrumb.html.twig line 1

Open in your IDE?
  1. {% trans_default_domain 'breadcrumb' %}
  2. <div class="breadcrumb{% if variation is defined and variation == 'centered' %} breadcrumb-centered{% endif %}">
  3.     <i class="fa-solid fa-house"></i> /
  4.     {% for page in pages %}
  5.         <span{% if loop.last %} class="active"{% endif %}>
  6.         {% if page.route is defined and page.route %}
  7.             <a href="{{ page.route }}">{{ page.label|trans }}</a>
  8.         {% else %}
  9.             {{ page.label|trans }}
  10.         {% endif %}
  11.         </span>
  12.         {% if not loop.last %} / {% endif %}
  13.     {% endfor %}
  14. </div>