{% extends "base.html.jinja" %} {% block breadcrumbs %}{% endblock %} {% block mainclasses %}landing page-docs page-docs-index landing-builtin-bg overflow-hidden styled-page{% endblock %} {% block main %}

{% trans %}Full documentation index{% endtrans %}

{% trans %}See Everything{% endtrans %}
{% set docpages = pages|selectattr('html', 'defined_and_equalto', 'docs.html')|list|first %}
{% for page in docpages.children if page.html not in ("by-label.html", "faq.html", 'docs-index.html') %} {% set parent_html = page.html %} {% set depth = 6 %} {% set show_blurbs = False %}
{{page.name}}
{% include 'children.html' %}
{% endfor %}
{% endblock %}