PySimpleGUI/mkdocs_ivory/breadcrumbs.html
PySimpleGUI 168810e471 rtd
2021-09-27 13:28:22 -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 %}