File: footer-article.html

package info (click to toggle)
sphinx-basic-ng 1.0.0~beta2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 504 kB
  • sloc: python: 179; makefile: 5
file content (25 lines) | stat: -rw-r--r-- 666 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<div class="related-pages">
  {% if prev -%}
  <a class="prev-page" href="{{ prev.link }}">
    <div class="page-info">
      <div class="context">
        <span>{{ _("Previous") }}</span>
      </div>
      {% if prev.link == pathto(root_doc) %}
      <div class="title">{{ _("Home") }}</div>
      {% else %}
      <div class="title">{{ prev.title }}</div>
      {% endif %}
    </div>
  </a>
  {%- endif %} {% if next -%}
  <a class="next-page" href="{{ next.link }}">
    <div class="page-info">
      <div class="context">
        <span>{{ _("Next") }}</span>
      </div>
      <div class="title">{{ next.title }}</div>
    </div>
  </a>
  {%- endif %}
</div>