{% extends "layout.html" %} {% comment %} basic/genindex-single.html ~~~~~~~~~~~~~~~~~~~~~~~~~~ Template for a "single" page of a split index. :copyright: Copyright 2007-2010 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. {% endcomment %} {% block title %}Index{% endblock %} {% block body %}

Index – {{ key }}

{% for column in entries|slice:":2" %} {% if column %} {% endif %} {% endfor %}
{% for entryname, (links, subitems) in column %}
{% if links %}{{ entryname }} {% for link in links|slice:"1:" %}, [{{ loop.index }}]{% endfor %} {% else %}{{ entryname }}{% endif %}
{% if subitems %}
{% for subentryname, subentrylinks in subitems %}
{{ subentryname }} {% for link in subentrylinks|slice:"1:" %}, [{{ loop.index }}]{% endfor %}
{% endfor %}
{% endif %} {% endfor %}
{% endblock %} {% block sidebarrel %}

Index

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

Full index on one page

{{ block.super }} {% endblock %}