Files
vergabe-teilnahme/vergabe_teilnahme/templates/partials/breadcrumb.html
2026-05-08 14:26:48 +02:00

13 lines
434 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% if breadcrumbs %}
<nav class="flex items-center gap-2 text-sm text-slate-500 mb-4">
{% for crumb in breadcrumbs %}
{% if not forloop.last %}
<a href="{{ crumb.url }}" class="hover:text-slate-900 transition-colors">{{ crumb.label }}</a>
<span class="text-slate-300"></span>
{% else %}
<span class="text-slate-900 font-medium">{{ crumb.label }}</span>
{% endif %}
{% endfor %}
</nav>
{% endif %}