summaryrefslogtreecommitdiff
path: root/sandbox/py-rest-doc/sphinx/templates/genindex.html
blob: a97c5485dd3da92389acb9f29f65cffa647e7237 (plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{% extends "layout.html" %}
{% set title = 'Index' %}
{% block body %}

   <h1 id="index">Index</h1>

   {% for key, dummy in genindexentries -%}
   <a href="#{{ key }}"><strong>{{ key }}</strong></a> {% if not loop.last %}| {% endif %}
   {%- endfor %}

   <hr>

   {% for key, entries in genindexentries %}
      <h2 id="{{ key }}">{{ key }}</h2>
      <table width="100%" class="indextable"><tr><td width="33%" valign="top">
      <dl>
      {%- set breakat = genindexcounts[loop.index0] // 2 %}
      {%- set numcols = 1 %}
      {%- set numitems = 0 %}
      {% for entryname, (links, subitems) in entries %}
         <dt>{%- if links -%}
            <a href="{{ links[0] }}">{{ entryname }}</a>
            {%- for link in links[1:] %}, <a href="{{ link }}">[Link]</a>{% endfor -%}
         {%- else -%}
            {{ entryname }}
         {%- endif -%}</dt>
         {%- if subitems %}
            <dd><dl>
            {%- for subentryname, subentrylinks in subitems %}
               <dt><a href="{{ subentrylinks[0] }}">{{ subentryname }}</a>
               {%- for link in subentrylinks[1:] %}, <a href="{{ link }}">[Link]</a>{% endfor -%}
               </dt>
            {%- endfor %}
            </dl></dd>
         {%- endif -%}
         {%- set numitems = numitems + 1 + len(subitems) -%}
         {%- if numcols < 2 and numitems > breakat -%}
           {%- set numcols = numcols+1 -%}
           </dl></td><td width="33%" valign="top"><dl>
         {%- endif -%}
      {% endfor %}
      </dl></td></tr></table>

   {% endfor %}

{% endblock %}