
| Current Path : /var/www/html/german-vocational.cn/themes/showcase_lite/templates/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/german-vocational.cn/themes/showcase_lite/templates/breadcrumb.html.twig |
{#
/**
* @file
* Theme override for a breadcrumb trail.
*
* Available variables:
* - breadcrumb: Breadcrumb trail items.
*/
#}
{{ attach_library('showcase_lite/breadcrumb') }}
{% if breadcrumb %}
<nav class="breadcrumb" role="navigation" aria-labelledby="system-breadcrumb">
<h2 id="system-breadcrumb" class="visually-hidden">{{ 'Breadcrumb'|t }}</h2>
<ol class="breadcrumb__items">
{% for key, item in breadcrumb %}
<li class="breadcrumb__item">
<span class="breadcrumb__item-separator fa {{ mt_setting.breadcrumb_separator }}"></span>
{% if item.url %}
<a href="{{ item.url }}">
<span>{{ item.text }}</span>
</a>
{% else %}
<span>{{ item.text }}</span>
{% endif %}
</li>
{% endfor %}
</ol>
</nav>
{% endif %}