PySimpleGUI/mkdocs_ivory/breadcrumbs.html
2021-09-27 14:00:40 -04:00

12 lines
No EOL
302 B
HTML

{% if page %}
<ul>
{% for doc in page.ancestors|reverse -%}
{%- if doc.link -%}
<li><a href="{{ doc.link|e }}">{{ doc.title }}</a>
{%- else -%}
<li>{{ doc.title }}
{%- endif -%}
{%- if not loop.last %} &raquo; {% endif %}</li>
{%- endfor %}
</ul>
{% endif %}