This commit is contained in:
PySimpleGUI 2021-09-27 13:28:22 -04:00
parent 5dec5dca5b
commit 168810e471
15 changed files with 912 additions and 0 deletions

View file

@ -0,0 +1,12 @@
{% 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 %}