diff options
author | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-02-08 17:53:49 +0100 |
---|---|---|
committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-02-08 17:53:49 +0100 |
commit | 2f8c365e02d044898c9286b907695d87f1fa0e1b (patch) | |
tree | c44e1d06be345caeb9dfdf1393f646e72529bbfd /doc/user/conf.py | |
parent | doc: use python 2.6 format strings (diff) | |
download | frr-2f8c365e02d044898c9286b907695d87f1fa0e1b.tar.xz frr-2f8c365e02d044898c9286b907695d87f1fa0e1b.zip |
doc: change html theme, add svg logo
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'doc/user/conf.py')
-rw-r--r-- | doc/user/conf.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/doc/user/conf.py b/doc/user/conf.py index bd1bf6c04..a9ea4ad90 100644 --- a/doc/user/conf.py +++ b/doc/user/conf.py @@ -157,12 +157,14 @@ todo_include_todos = True # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. -html_theme = 'sphinx_rtd_theme' +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 = { + 'sidebarbgcolor': '#374249' +} # Add any paths that contain custom themes here, relative to this directory. #html_theme_path = [] @@ -176,7 +178,7 @@ html_theme = 'sphinx_rtd_theme' # The name of an image file (relative to this directory) to place at the top # of the sidebar. -html_logo = '../figures/frr-logo-medium.png' +html_logo = '../figures/frr-icon.svg' # The name of an image file (within the static path) to use as favicon of the # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 @@ -186,7 +188,7 @@ html_favicon = '../figures/frr-logo-icon.png' # 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_static_path = ['_static'] # Add any extra paths that contain custom files (such as robots.txt or # .htaccess) here, relative to this directory. These files are copied |