{# Displays links to the previous and next page in the TOCtree order. #}
{%- if prev %}

{{ _("previous") }}

{% set temp_title = prev_title or prev.title %}

{{ '…' ~ temp_title[-30:] if temp_title|length > 30 else temp_title }}

{%- endif %} {%- if next %}

{{ _("next") }}

{% set temp_title = next_title or next.title %}

{{ '…' ~ temp_title[-30:] if temp_title|length > 30 else temp_title }}

{%- endif %}