mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
9 lines
271 B
HTML
9 lines
271 B
HTML
{% extends "layout.html" %}
|
|
{% set title = _('Sphinx documentation contents') %}
|
|
{% block body %}
|
|
<h1>{{ _('Sphinx documentation contents') }}</h1>
|
|
<div class="toctree-wrapper compound">
|
|
{{ toctree(includehidden=True, collapse=False, maxdepth=3) }}
|
|
</div>
|
|
{% endblock %}
|