From 21e200d97760614dbd6a74d9de5c0cf2c03ffc68 Mon Sep 17 00:00:00 2001 From: Nik Nyby Date: Wed, 1 Mar 2017 13:49:14 -0500 Subject: [PATCH] Fix documentation sidebar https://github.com/ccnmtl/django-pagetree/pull/154 --- docs/conf.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 3952d8d..06d8539 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -110,13 +110,21 @@ # a list of builtin themes. html_theme = 'alabaster' +html_sidebars = { + '**': [ + 'about.html', + 'navigation.html', + 'relations.html', + 'searchbox.html', + ] +} + # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the # documentation. html_theme_options = { 'github_user': 'ccnmtl', 'github_repo': 'djangowind', - 'github_banner': 'true', } # Add any paths that contain custom themes here, relative to this directory.