File: page.html

package info (click to toggle)
errbot 6.2.0%2Bds-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,856 kB
  • sloc: python: 11,572; makefile: 163; sh: 97
file content (15 lines) | stat: -rw-r--r-- 441 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{%- extends "layout.html" %}
{% block body %}
  {{ body }}
  <div id="prev_next_links">
      {% if pagename != "index" %}
          {% if prev %}
              Previous: <a href="{{ prev.link|e }}">{{ prev.title }}</a>
          {% endif %}
          {% if next %}
              {% if prev %} | {% endif %}
              Next: <a href="{{ next.link|e }}">{{ next.title }}</a>
          {% endif %}
      {% endif %}
  </div>
{% endblock %}