File: page.html

package info (click to toggle)
tinydb 4.8.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 536 kB
  • sloc: python: 2,124; makefile: 149
file content (18 lines) | stat: -rw-r--r-- 518 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{%- extends "basic/page.html" %}

{% block body %}
    {{ super() }}

    {%- if prev or next and pagename != 'index' %}
        <p>
        {%- if prev %}
          <a href="{{ prev.link|e }}" title="{{ _('previous chapter')
            }}">&laquo; {{ prev.title }}</a> {% if next %}|{% endif %}
        {%- endif %}
        {%- if next %}
          <a href="{{ next.link|e }}" title="{{ _('next chapter')
            }}">{{ next.title }} &raquo;</a>
        {%- endif %}
        </p>
    {%- endif %}
{% endblock %}