Files
wren/manual_src/templates/includes/breadcrumb.html
T
retoor fe2f087d9f
WrenCI / mac (push) Waiting to run
WrenCI / windows (push) Waiting to run
WrenCI / linux (push) Failing after 55s
UPdate.
2026-01-26 05:12:14 +01:00

13 lines
367 B
HTML

{# retoor <retoor@molodetz.nl> #}
<nav class="breadcrumb">
<a href="{{ static_prefix }}index.html">Home</a>
{% for crumb in breadcrumb %}
<span class="separator">/</span>
{% if loop.last %}
<span>{{ crumb.title }}</span>
{% else %}
<a href="{{ static_prefix }}{{ crumb.url }}">{{ crumb.title }}</a>
{% endif %}
{% endfor %}
</nav>