{# This file is part of quark-sphinx-theme. Copyright (c) 2016 Felix Krull Released under the terms of the BSD license; see LICENSE. Based on code from the Sphinx project (http://sphinx-doc.org). Copyright 2007-2016 by the Sphinx team. Originally released under the terms of the BSD license. #} {% extends 'basic/genindex.html' %} {% block sidebar1 %} {% if not theme_hide_sidebar_in_index -%} {{ sidebar_table() }} {%- endif %} {% endblock %} {% block body %}

{{ _('Index') }}

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

{{ key }}

{#- Also set width as table and td attributes for QTextBrowser. -#} {%- for column in entries|slice(2) if column %} {%- endfor %}
{%- for entryname, entry in column %} {{ indexentries(entryname, entry[0]) }} {%- if entry[1] %}
{%- for subentryname, subentrylinks in entry[1] %} {{ indexentries(subentryname, subentrylinks) }} {%- endfor %}
{%- endif -%} {%- endfor %}
{% endfor %} {% endblock %}