aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2019-02-28 14:56:18 +0000
committerPeter Maydell <peter.maydell@linaro.org>2019-03-05 12:44:01 +0000
commit2eafc2624310783942f5c7180a1daea64b04bf24 (patch)
tree4354ef8f6113ef6b08c315fd6649bef21f89d572
parent9c0db9cbb8a4e894e0c9a85f1c8dce99f2badd5e (diff)
docs/conf.py: Configure the 'alabaster' theme
Add the 'navigation' bar to the sidebar, which for some reason is not enabled by default. Remove 'relations', which is effectively disabled anyway and isn't useful for us. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Acked-by: Aleksandar Markovic <amarkovic@wavecomp.com> Message-id: 20190228145624.24885-6-peter.maydell@linaro.org
-rw-r--r--docs/conf.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/conf.py b/docs/conf.py
index e1d08a34a6..348e635874 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -106,7 +106,8 @@ html_theme = 'alabaster'
# refs: http://alabaster.readthedocs.io/en/latest/installation.html#sidebars
html_sidebars = {
'**': [
- 'relations.html', # needs 'show_related': True theme option to display
+ 'about.html',
+ 'navigation.html',
'searchbox.html',
]
}