haikal/templates/breadcrumbs.html
2024-12-08 14:07:50 +03:00

11 lines
504 B
HTML

<nav aria-label="breadcrumb">
<ol class="breadcrumb">
{% for url, label in breadcrumbs %}
{% if not url or forloop.counter == breadcrumbs_total %}
<li class="breadcrumb-item{% if forloop.counter == breadcrumbs_total %} active{% endif %}" {% if forloop.counter == breadcrumbs_total %}aria-current="page"{% endif %}>{{ label|safe }}</li>
{% else %}
<li class="breadcrumb-item"><a href="{{ url }}">{{ label|safe }}</a></li>
{% endif %}
{% endfor %}
</ol>
</nav>