{#
/**
* @file
* Theme override for a breadcrumb trail.
*
* Available variables:
* - breadcrumb: Breadcrumb trail items.
* - current_title: The title of the current page.
*/
#}
{% if breadcrumb %}
{{ 'Breadcrumb'|t }}
{% for item in breadcrumb %}
{% if loop.index0 > 0 %}
>
{% endif %}
{% if item.url %}
{{ item.text }}
{% else %}
{{ item.text }}
{% endif %}
{% endfor %}
{% if current_title %}
>{{ current_title }}
{% endif %}