11 lines
472 B
HTML
11 lines
472 B
HTML
<nav class="breadcrumbs f5" aria-label="Breadcrumb">
|
|
{% for breadcrumb in breadcrumbs %}
|
|
{% if page.hidden %}
|
|
<span class="d-inline-block">{{breadcrumb[1].title}}</span>
|
|
{% else %}
|
|
<a title="{{ breadcrumb[0]}}: {{breadcrumb[1].title}}" href="/{{currentLanguage}}{{breadcrumb[1].href}}" class="d-inline-block {% if breadcrumb[1].href == currentPathWithoutLanguage %}text-gray-light{% endif %}">
|
|
{{breadcrumb[1].title}}</a>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</nav>
|