Merge pull request #3849 from segevfiner/alabaster-html-sidebars

Add html_sidebars for alabaster by default
This commit is contained in:
Jean-François B 2017-06-03 17:32:12 +02:00 committed by GitHub
commit faa85d8a20

View File

@ -107,6 +107,21 @@ html_theme = 'alabaster'
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['{{ dot }}static']
# Custom sidebar templates, must be a dictionary that maps document names
# to template names.
#
# This is required for the alabaster theme and you should remove this if you
# switch your theme and don't want to customize this.
html_sidebars = {
'**': [
'about.html',
'navigation.html',
'relations.html',
'searchbox.html',
'donate.html',
]
}
# -- Options for HTMLHelp output ------------------------------------------