diff options
author | Georg Brandl <georg@python.org> | 2012-03-25 18:31:57 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2012-03-25 18:31:57 (GMT) |
commit | ab7121430e8ef7106582b1abe0d6a900f62f22ce (patch) | |
tree | 21473497f8eaf980993377c5bae496c51dafe4f2 /Doc/conf.py | |
parent | 11ee31ab08841b9479fe92e34c64bb95c7e1e47c (diff) | |
download | cpython-ab7121430e8ef7106582b1abe0d6a900f62f22ce.zip cpython-ab7121430e8ef7106582b1abe0d6a900f62f22ce.tar.gz cpython-ab7121430e8ef7106582b1abe0d6a900f62f22ce.tar.bz2 |
Switch to new "lighter" doc design.
Diffstat (limited to 'Doc/conf.py')
-rw-r--r-- | Doc/conf.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Doc/conf.py b/Doc/conf.py index 85eb9fa..f827840 100644 --- a/Doc/conf.py +++ b/Doc/conf.py @@ -65,9 +65,12 @@ highlight_language = 'python3' # Options for HTML output # ----------------------- -html_theme = 'default' +html_theme = 'pydoctheme' +html_theme_path = ['tools/sphinxext'] html_theme_options = {'collapsiblesidebar': True} +html_short_title = '%s Documentation' % release + # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format. html_last_updated_fmt = '%b %d, %Y' |