File: localtoc.html

package info (click to toggle)
urwid 3.0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,232 kB
  • sloc: python: 29,010; javascript: 382; sh: 34; makefile: 22
file content (18 lines) | stat: -rw-r--r-- 466 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{%- if pagename.startswith('manual/') -%}
  <h3>Table of contents</h3>
    <ul><li><a href="index.html">Manual</a></li>
    {%- if display_toc -%}
      {{ toc }}
    {%- endif %}
    </ul>
{%- elif pagename.startswith('reference/') -%}
  <h3>Table of contents</h3>
    <ul><li><a href="index.html">Reference</a></li>
    {%- if display_toc -%}
      {{ toc }}
    {%- endif %}
    </ul>
{%- elif display_toc -%}
  <h3>Table of contents</h3>
  {{ toc }}
{% endif %}