bootstrap-8.x-3.23/templates/system/breadcrumb.html.twig
templates/system/breadcrumb.html.twig
{# /** * @file * Default theme implementation for a breadcrumb trail. * * Available variables: * - breadcrumb: Breadcrumb trail items. * * @ingroup templates */ #} {% if breadcrumb %} <ol class="breadcrumb"> {% for item in breadcrumb %} <li {{ item.attributes }}> {% if item.url %} <a href="{{ item.url }}">{{ item.text }}</a> {% else %} {{ item.text }} {% endif %} </li> {% endfor %} </ol> {% endif %}