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