You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
917 B
HTML

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

{%- if page -%}
{%- set document = page -%}
{%- else -%}
{%- set document = section -%}
{%- endif -%}
{% if not document.extra.disable_ariane %}
<div class="ariane markdown">
{%- set doc_components = document.components -%}
{%- set c_path = "" -%}
{%- set home = get_section(path="_index.md") -%}
{# if were not currently on the home page #}
{%- if home.path != document.path -%}
<a href="{{ home.permalink }}">{{ home.title }}</a>
{% endif -%}
{%- for comp in doc_components -%}
{%- if not loop.last -%}
{%- set sel_path = c_path ~ comp ~ "/_index.md" -%}
{%- set c_section = get_section(path=sel_path) -%}
{%- set_global c_path = c_path ~ comp ~ "/" -%}
<a href="{{ c_section.permalink }}">{{ c_section.title }}</a>
{% endif -%}
{%- endfor -%}
{{ document.title }}
</div>
{% endif %}