I am trying to have the TOC show up in all my pages. My set up is pretty simple. In the index.rst, I have
Installation
============
Scripting
=========
.. toctree::
:maxdepth: 2
:caption: Contents:
class ASAT
""""""""""
.. toctree::
:maxdepth: 2
asat
more class ...
and in the other pages, I have:
class asat.SomeClass
"""""""""""""""""""""
.. autoclass:: modeule.SomeClass
:members:
.. automethod:: __init__
In order for the TOC to appear, I changed conf.py
to reflect:
html_sidebars = {
'**': [
'globaltoc.html',
'relations.html',
'searchbox.html'
]
}
But in doing so, none of the nested stuff from index.rst
is showing up in any of the TOCs. Here is a screenshot of what it looks like:
How can I get the original/normal TOC from alabaster to appear in all my pages?