All Downloads are FREE. Search and download functionalities are using the official Maven repository.

kr.motd.maven.sphinx.dist.sphinx.themes.basic.genindex-single.html Maven / Gradle / Ivy

There is a newer version: 2.10.0
Show newest version
{#
    basic/genindex-single.html
    ~~~~~~~~~~~~~~~~~~~~~~~~~~

    Template for a "single" page of a split index.

    :copyright: Copyright 2007-2016 by the Sphinx team, see AUTHORS.
    :license: BSD, see LICENSE for details.
#}
{% macro indexentries(firstname, links) %}
  
{%- if links -%} {%- if links[0][0] %}{% endif -%} {{ firstname|e }} {%- if links[0][0] %}{% endif -%} {%- for ismain, link in links[1:] -%} , {% if ismain %}{% endif -%} [{{ loop.index }}] {%- if ismain %}{% endif -%} {%- endfor %} {%- else %} {{ firstname|e }} {%- endif %}
{% endmacro %} {%- extends "layout.html" %} {% set title = _('Index') %} {% block body %}

{% trans key=key %}Index – {{ key }}{% endtrans %}

{%- for column in entries|slice(2) if column %} {%- endfor %}
{%- for entryname, (links, subitems, _) in column %} {{ indexentries(entryname, links) }} {%- if subitems %}
{%- for subentryname, subentrylinks in subitems %} {{ indexentries(subentryname, subentrylinks) }} {%- endfor %}
{%- endif -%} {%- endfor %}
{% endblock %} {% block sidebarrel %}

{{ _('Index') }}

{% for key, dummy in genindexentries -%} {{ key }} {% if not loop.last %}| {% endif %} {%- endfor %}

{{ _('Full index on one page') }}

{{ super() }} {% endblock %}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy