{# 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-single.html' %} {% block sidebar1 %} {% if not theme_hide_sidebar_in_index -%} {{ sidebar_table() }} {%- endif %} {% endblock %} {% block body %}

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

{#- 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 %}
{% endblock %}