File: layout.html

package info (click to toggle)
python-taskflow 6.0.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,540 kB
  • sloc: python: 27,557; sh: 269; makefile: 24
file content (15 lines) | stat: -rw-r--r-- 530 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "!layout.html" %}
{% block sidebarrel %}
  <h3>{{ _('Navigation')}}</h3>
  <ul>
{% if pagename != "index" %}
    <li><a href="{{ pathto(master_doc) }}">{{ _('Table Of Contents') }}</a></li>
{% endif %}
{% if next %}
    <li><a href="{{ next.link|e }}" title="{{ _('next chapter') }}">{{ _('Next topic') }}: {{ next.title }}</a></li>
{% endif %}
{% if prev %}
    <li><a href="{{ prev.link|e }}" title="{{ _('previous chapter') }}">{{ _('Previous topic') }}: {{ prev.title }}</a></li>
{% endif %}
  </ul>
{% endblock %}