kr.motd.maven.sphinx.dist.sphinx.themes.basic.genindex-split.html Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sphinx-maven-plugin Show documentation
Show all versions of sphinx-maven-plugin Show documentation
Maven plugin that creates the site with Sphinx
{#
basic/genindex-split.html
~~~~~~~~~~~~~~~~~~~~~~~~~
Template for a "split" index overview page.
:copyright: Copyright 2007-2015 by the Sphinx team, see AUTHORS.
:license: BSD, see LICENSE for details.
#}
{%- extends "layout.html" %}
{% set title = _('Index') %}
{% block body %}
{{ _('Index') }}
{{ _('Index pages by letter') }}:
{% for key, dummy in genindexentries -%}
{{ key }}
{% if not loop.last %}| {% endif %}
{%- endfor %}
{% endblock %}
{% block sidebarrel %}
{% if split_index %}
Index
{% for key, dummy in genindexentries -%}
{{ key }}
{% if not loop.last %}| {% endif %}
{%- endfor %}
{% endif %}
{{ super() }}
{% endblock %}