将侧边栏添加到sphinx-bootstrap-theme中除索引之外的所有页面

时间:2017-03-12 10:32:58

标签: python-sphinx restructuredtext

我在sphinx文档中添加了一个侧边栏,方法是将以下内容添加到conf.py

html_sidebars = {'**': ['my_custom_sidebar.html']}

这会导致侧边栏显示在所有页面上。 我希望这个侧边栏显示在除索引页面之外的所有页面上。我该怎么做呢?

1 个答案:

答案 0 :(得分:1)

检查以下答案:Sphinx exclude one Page from html_sidebars

我使用Chris Bay的代码来工作:

html_sidebars = {
'**': ['localtoc.html'],
'index': []
}