templates/_layout/breadcrumb.html.twig line 1

Open in your IDE?
  1. {% if BREADCRUMB is not empty %}
  2. <ul class="navbar-nav me-auto mb-2 mb-lg-0 ps-5{% if BREADCRUMB is empty %} mx-auto{% endif %}">
  3. {% for path in BREADCRUMB %}
  4.     <li class="nav-item">
  5.         <a class="nav-link text-white{% if path.url is not defined %} pe-none{% endif %}" aria-current="page" href="{% if path.url is defined %}{{ path.url }}{% else %}#{% endif %}">
  6.             {{ path.label }}
  7.         </a>
  8.     </li>
  9. {% endfor %}
  10. </ul>
  11. {% endif %}