diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-11-08 18:10:15 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2019-11-08 18:26:10 +0100 |
commit | 8039d9d2dce4b99820513041045b1825a09ffd07 (patch) | |
tree | 4547f417b22b3b7d91692d3717b2243b8e6b770f /docs/conf.py | |
parent | e298cf2290cca0f3c76579074bafbbcce18ca356 (diff) | |
download | vyos-documentation-8039d9d2dce4b99820513041045b1825a09ffd07.tar.gz vyos-documentation-8039d9d2dce4b99820513041045b1825a09ffd07.zip |
conf: add VyOS logo to generated docs
Diffstat (limited to 'docs/conf.py')
-rw-r--r-- | docs/conf.py | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/docs/conf.py b/docs/conf.py index b8c54130..3fedc05c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -29,7 +29,6 @@ version = u'1.3' # The full version, including alpha/beta/rc tags release = u'equuleus' - # -- General configuration --------------------------------------------------- # If your documentation needs a minimal Sphinx version, state it here. @@ -101,6 +100,14 @@ html_static_path = ['_static'] # # html_sidebars = {} +# The name of an image file (relative to this directory) to place at the top +# of the sidebar. +html_logo = '_static/images/vyos-logo.png' + +# 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 +# pixels large. +html_favicon = '_static/images/vyos-logo-icon.png' # -- Options for HTMLHelp output --------------------------------------------- @@ -108,7 +115,7 @@ html_static_path = ['_static'] htmlhelp_basename = 'VyOSdoc' -# -- Options for LaTeX output ------------------------------------------------ +# -- Options fo_r LaTeX output ------------------------------------------------ latex_elements = { # The paper size ('letterpaper' or 'a4paper'). @@ -136,6 +143,9 @@ latex_documents = [ u'VyOS maintainers and contributors', 'manual'), ] +# The name of an image file (relative to this directory) to place at the top of +# the title page. +latex_logo = '_static/images/vyos-logo.png' # -- Options for manual page output ------------------------------------------ |