aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2020-08-02 17:17:16 +0200
committerLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2020-08-03 00:15:14 +0200
commit4631d03232968ee63b073e47818b3cd4a3647260 (patch)
tree4cda2f931b814ca50e47025f6c9608a0f7073605
parentb09b9dda368dcc8640f9dff2129e8b651872edf4 (diff)
downloadsparse-4631d03232968ee63b073e47818b3cd4a3647260.tar.gz
doc: add index to the sidebar
It's very useful to be able to access the index from the sidebar but no change in the configuration seems to allow this. Trying to abuse the toctree give the same result. So, add it directly via the template system. Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
-rw-r--r--Documentation/templates/layout.html8
1 files changed, 8 insertions, 0 deletions
diff --git a/Documentation/templates/layout.html b/Documentation/templates/layout.html
new file mode 100644
index 00000000..a2fe215f
--- /dev/null
+++ b/Documentation/templates/layout.html
@@ -0,0 +1,8 @@
+{% extends "!layout.html" %}
+{% block menu %}
+ {{ super() }}
+ <p class="caption"><span class="caption-text">Index</span></p>
+ <ul>
+ <li class="toctree-l1"><a class="reference internal" href="{{ pathto('genindex') }}">Index</a></li>
+ </ul>
+{% endblock %}