From e05abf6e117be08dc33c7664b3d823c08887de1e Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Wed, 6 Dec 2017 04:21:29 -0500 Subject: Massively expanded the reference section. --- _templates/globaltoc.html | 11 +++++++++++ _templates/localtoc.html | 13 +++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 _templates/globaltoc.html create mode 100644 _templates/localtoc.html (limited to '_templates') diff --git a/_templates/globaltoc.html b/_templates/globaltoc.html new file mode 100644 index 0000000..36894a8 --- /dev/null +++ b/_templates/globaltoc.html @@ -0,0 +1,11 @@ +{# + basic/globaltoc.html + ~~~~~~~~~~~~~~~~~~~~ + + Sphinx sidebar template: global table of contents. + + :copyright: Copyright 2007-2017 by the Sphinx team, see AUTHORS. + :license: BSD, see LICENSE for details. +#} +

{{ _('Table Of Contents') }}

+{{ toctree(maxdepth=1) }} diff --git a/_templates/localtoc.html b/_templates/localtoc.html new file mode 100644 index 0000000..bc0b79d --- /dev/null +++ b/_templates/localtoc.html @@ -0,0 +1,13 @@ +{# + basic/localtoc.html + ~~~~~~~~~~~~~~~~~~~ + + Sphinx sidebar template: local table of contents. + + :copyright: Copyright 2007-2017 by the Sphinx team, see AUTHORS. + :license: BSD, see LICENSE for details. +#} +{%- if display_toc %} +

{{ _('This Section') }}

+ {{ toc }} +{%- endif %} -- cgit v1.2.3