mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
* Add Bootstrap Extension * Rename main.yml * Artifact Upload * Fix Bootstrap Reference Error * BootstrapTreeProcessor * getiterator removed * keys function * Style Images * Update docs_build.yml * Added Meta Files * Template Get * Fix Page Ref * Update BASE_URL * Sort Schemas * Add Sitemaps * Add favicons, open-graph, and setup guide * Update Setup.md * Update .gitignore * Update Setup.md * Use _blank on external links * Restructured Docs * Fix Links * Added XML Schemas * Name XML Schemas
13 lines
428 B
Django/Jinja
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> |