File: relations.html

package info (click to toggle)
errbot 6.1.7%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 3,712 kB
  • sloc: python: 13,831; makefile: 164; sh: 97
file content (22 lines) | stat: -rw-r--r-- 792 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<h3>Related Topics</h3>
<ul>
    <li><a href="{{ pathto(master_doc) }}">Homepage</a></li>
    <li><a href="{{ pathto("genindex") }}">Index</a></li>
    <li><a href="{{ pathto("py-modindex") }}">Module index</a></li>
    <li><a href="{{ pathto("modules") }}">API reference</a></li>
    {%- for parent in parents %}
        <li>
        <a href="{{ parent.link|e }}">{{ parent.title }}</a>
        <ul>
    {%- endfor %}
    {%- if prev %}
        <li>Previous: <a href="{{ prev.link|e }}" title="{{ _('previous chapter') }}">{{ prev.title }}</a></li>
    {%- endif %}
    {%- if next %}
        <li>Next: <a href="{{ next.link|e }}" title="{{ _('next chapter') }}">{{ next.title }}</a></li>
    {%- endif %}
    {%- for parent in parents %}
        </ul>
        </li>
    {%- endfor %}
</ul>