diff options
Diffstat (limited to 'Doc/conf.py')
-rw-r--r-- | Doc/conf.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Doc/conf.py b/Doc/conf.py index 19a2f7d67f..d8efce035c 100644 --- a/Doc/conf.py +++ b/Doc/conf.py @@ -46,9 +46,13 @@ exclude_patterns = [venvdir+'/*', 'README.rst'] # ----------------------- # Use our custom theme. -html_theme = 'pydoctheme' +html_theme = 'python_docs_theme' html_theme_path = ['tools'] -html_theme_options = {'collapsiblesidebar': True} +html_theme_options = { + 'collapsiblesidebar': True, + 'issues_url': 'https://docs.python.org/3/bugs.html', + 'root_include_title': False # We use the version switcher instead. +} # Short title used e.g. for <title> HTML tags. html_short_title = '%s Documentation' % release |