new-horizons/docs/content/base/breadcrumbs.jinja2
2022-03-02 23:24:17 -05:00

13 lines
428 B
Django/Jinja

<div class="breadcrumbs">
{% for node in schema.nodes_from_root %}
{% if loop.first %}
Root
{% else %}
<a href="#{{ node.html_id }}"
onclick="anchorLink('{{ node.html_id }}')">{{ node.name_for_breadcrumbs | upper_first }}</a>
{% endif %}
{% if not loop.last %}
<i class="bi-arrow-right-short"></i>
{% endif %}
{% endfor %}
</div>