PySimpleGUI/mkdocs_ivory/breadcrumbs.html

12 lines
302 B
HTML
Raw Normal View History

2021-09-27 18:00:40 +00:00
{% 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 %}