From 2dfa53143ab8b29953ff24cc02a1ebdbbc70fbf2 Mon Sep 17 00:00:00 2001 From: kaliko Date: Tue, 16 Nov 2021 13:37:16 +0100 Subject: [PATCH] doc: Use default theme --- doc/source/conf.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index 3845855..7102970 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -116,17 +116,19 @@ todo_include_todos = False # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. -#html_theme = 'alabaster' -html_theme = 'bootstrap' -#html_theme = 'classic' +html_theme = 'classic' # 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 = {} +html_theme_options = { + "externalrefs": True, + "sidebarwidth": "300px", + "bgcolor": "#dfdfdf", +} # Add any paths that contain custom themes here, relative to this directory. -html_theme_path = ['/usr/lib/python3/dist-packages/sphinx_bootstrap_theme'] +#html_theme_path = [] # The name for this set of Sphinx documents. If None, it defaults to # " v documentation". -- 2.39.2