update to bootstrap theme

This commit is contained in:
Sam
2019-07-14 15:31:04 +02:00
parent dd04386743
commit 9b7055d41c
3 changed files with 17 additions and 2 deletions

View File

@ -13,6 +13,8 @@
import os
import sys
import sphinx_bootstrap_theme
sys.path.insert(0, os.path.abspath('../../fittrackee_api'))
# -- Project information -----------------------------------------------------
@ -48,9 +50,14 @@ exclude_patterns = []
# 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_path = sphinx_bootstrap_theme.get_html_theme_path()
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
html_theme_options = {
'bootswatch_theme': 'flatly',
}