1
0
Fork 0
forked from 2sys/shoutdotdev
shoutdotdev/templates/breadcrumbs.html

11 lines
443 B
HTML
Raw Permalink Normal View History

2025-02-26 13:10:46 -08:00
<nav class="container mt-4" aria-label="breadcrumb">
<ol class="breadcrumb">
2025-04-04 13:42:10 -07:00
{% for breadcrumb in breadcrumbs.iter().rev().skip(1).rev() %}
2025-02-26 13:10:46 -08:00
<li class="breadcrumb-item"><a href="{{ breadcrumb.href }}">{{ breadcrumb.label }}</a></li>
{% endfor %}
2025-04-04 13:42:10 -07:00
{% if let Some(breadcrumb) = breadcrumbs.iter().last() %}
2025-02-26 13:10:46 -08:00
<li class="breadcrumb-item active" aria-current="page">{{ breadcrumb.label }}</li>
{% endif %}
</ol>
</nav>