12 lines
302 B
HTML
12 lines
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 %} » {% endif %}</li>
|
||
|
{%- endfor %}
|
||
|
</ul>
|
||
|
{% endif %}
|