diff options
author | Georg Brandl <georg@python.org> | 2010-01-07 17:56:09 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-01-07 17:56:09 +0100 |
commit | 2f09d24472f03f5d170fa5b70903301d3614f27c (patch) | |
tree | 1e9354e3f8e01164bddf751f2a02858e1c2d2c77 /tests/root/conf.py | |
parent | 5cb64a7228d1c62be79378143c53beb3302e8067 (diff) | |
download | sphinx-git-2f09d24472f03f5d170fa5b70903301d3614f27c.tar.gz |
The ``html_sidebars`` config value can now contain patterns as keys, and the values can be lists that explicitly select which sidebar templates should be rendered.
That means that the builtin sidebar contents can be included only selectively.
Diffstat (limited to 'tests/root/conf.py')
-rw-r--r-- | tests/root/conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/root/conf.py b/tests/root/conf.py index 880918771..a3783511b 100644 --- a/tests/root/conf.py +++ b/tests/root/conf.py @@ -31,7 +31,7 @@ rst_epilog = '.. |subst| replace:: global substitution' html_theme = 'testtheme' html_theme_path = ['.'] html_theme_options = {'testopt': 'testoverride'} - +html_sidebars = {'**': 'customsb.html', 'contents': 'contentssb.html'} html_style = 'default.css' html_static_path = ['_static', 'templated.css_t'] html_last_updated_fmt = '%b %d, %Y' |