diff options
author | Georg Brandl <georg@python.org> | 2010-05-24 23:14:35 +0200 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-05-24 23:14:35 +0200 |
commit | 784e598743e70b371e26ac96a98ea60d7b50871d (patch) | |
tree | 9445a405bf26cdb847ffd5cb64d33c20d9ad2cb0 /doc/conf.py | |
parent | 6dedbfff2101d3a0b1dc6e137948388a54e3275f (diff) | |
download | sphinx-git-784e598743e70b371e26ac96a98ea60d7b50871d.tar.gz |
In the default theme, the sidebar can experimentally now be made collapsible using the new ``collapsiblesidebar`` theme option.
Diffstat (limited to 'doc/conf.py')
-rw-r--r-- | doc/conf.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/conf.py b/doc/conf.py index b268a13f0..e009fa1b4 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -18,7 +18,8 @@ version = sphinx.__released__ release = version show_authors = True -html_theme = 'sphinxdoc' +html_theme = 'default' +html_theme_options = {'collapsiblesidebar': True, 'stickysidebar': False} modindex_common_prefix = ['sphinx.'] html_static_path = ['_static'] html_index = 'index.html' |