diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 17:25:40 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 17:25:40 +0000 |
commit | cf7da1843c45a4c2df7a749f7886a2d2ba0ee92a (patch) | |
tree | 18dcde1a8d1f5570a77cd0c361de3b490d02c789 /sphinx/themes/basic/genindex-single.html | |
parent | Initial commit. (diff) | |
download | sphinx-be21195fae81d3ed2bf307cc2df9ad6779da83b0.tar.xz sphinx-be21195fae81d3ed2bf307cc2df9ad6779da83b0.zip |
Adding upstream version 7.2.6.upstream/7.2.6
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'sphinx/themes/basic/genindex-single.html')
-rw-r--r-- | sphinx/themes/basic/genindex-single.html | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/sphinx/themes/basic/genindex-single.html b/sphinx/themes/basic/genindex-single.html new file mode 100644 index 0000000..dd1d1f0 --- /dev/null +++ b/sphinx/themes/basic/genindex-single.html @@ -0,0 +1,63 @@ +{# + basic/genindex-single.html + ~~~~~~~~~~~~~~~~~~~~~~~~~~ + + Template for a "single" page of a split index. + + :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS. + :license: BSD, see LICENSE for details. +#} +{% macro indexentries(firstname, links) %} + {%- if links -%} + <a href="{{ links[0][1] }}"> + {%- if links[0][0] %}<strong>{% endif -%} + {{ firstname|e }} + {%- if links[0][0] %}</strong>{% endif -%} + </a> + + {%- for ismain, link in links[1:] -%} + , <a href="{{ link }}">{% if ismain %}<strong>{% endif -%} + [{{ loop.index }}] + {%- if ismain %}</strong>{% endif -%} + </a> + {%- endfor %} + {%- else %} + {{ firstname|e }} + {%- endif %} +{% endmacro %} + +{%- extends "layout.html" %} +{% set title = _('Index') %} +{% block body %} + +<h1 id="index">{% trans key=key %}Index – {{ key }}{% endtrans %}</h1> + +<table style="width: 100%" class="indextable"><tr> + {%- for column in entries|slice(2) if column %} + <td style="width: 33%; vertical-align: top;"><ul> + {%- for entryname, (links, subitems, _) in column %} + <li>{{ indexentries(entryname, links) }} + {%- if subitems %} + <ul> + {%- for subentryname, subentrylinks in subitems %} + <li>{{ indexentries(subentryname, subentrylinks) }}</li> + {%- endfor %} + </ul> + {%- endif -%}</li> + {%- endfor %} + </ul></td> + {%- endfor %} +</tr></table> + +{% endblock %} + +{% block sidebarrel %} + <h4>{{ _('Index') }}</h4> + <p>{% for key, dummy in genindexentries -%} + <a href="{{ pathto('genindex-' + key) }}"><strong>{{ key }}</strong></a> + {% if not loop.last %}| {% endif %} + {%- endfor %}</p> + + <p><a href="{{ pathto('genindex-all') }}"><strong>{{ _('Full index on one page') }}</strong></a></p> + {{ super() }} +{% endblock %} |