{% block content_inner %}

{{ _('Index') }}

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

{{ key }}

{%- for column in entries|slice_index(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 %}
{% endfor %} {% endblock content_inner %}