{# /** * @file * Theme override for a breadcrumb trail. * * Available variables: * - breadcrumb: Breadcrumb trail items. */ #} {% if breadcrumb %}
{{ 'Breadcrumb'|t }}
{% for item in breadcrumb %}
{% if item.url %}
{{ item.text }}
{% else %} {{ item.text }} {% endif %}
{% endfor %} {# Once the breadcrumb loop completes, we add the current page title. This variable is created in umami.theme. #}
{{ current_page_title }}
{% endif %}