mirror of
https://github.com/nextcloud/documentation.git
synced 2025-10-26 11:18:02 +00:00
12 lines
375 B
HTML
12 lines
375 B
HTML
{% if parents|length != 0 %}
|
|
<ul class="nav_links" >
|
|
{%- if prev %}
|
|
<li><a href="{{ prev.link|e }}"
|
|
title="{{ _('previous chapter') }}">{{ "«"|safe }} {{ prev.title }}</a></li>
|
|
{%- endif %}
|
|
{%- if next %}
|
|
<li><a href="{{ next.link|e }}"
|
|
title="{{ _('next chapter') }}">{{ next.title }} {{ "»"|safe }}</a></li>
|
|
{%- endif %}
|
|
</ul>
|
|
{%- endif %} |