diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f2a277b --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.*.swp +.idea/ +build diff --git a/source/conf.py b/source/conf.py index 5903477..f3594d8 100644 --- a/source/conf.py +++ b/source/conf.py @@ -12,7 +12,7 @@ # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. # -# import os +import os # import sys # sys.path.insert(0, os.path.abspath('.')) @@ -69,7 +69,7 @@ language = None exclude_patterns = [] # The name of the Pygments (syntax highlighting) style to use. -pygments_style = None +pygments_style = 'sphinx' # -- Options for HTML output ------------------------------------------------- @@ -77,13 +77,21 @@ pygments_style = None # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. # -html_theme = 'alabaster' +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': '#f5f7f7', + 'sidebartextcolor': '#334d55', + 'sidebarlinkcolor': '#005fa9', +} + +html_logo = os.path.join('images', 'CAcert-logo-colour.svg') + +html_favicon = os.path.join('images', 'favicon.ico') # 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, @@ -186,4 +194,4 @@ intersphinx_mapping = {'https://docs.python.org/': None} # -- Options for todo extension ---------------------------------------------- # If true, `todo` and `todoList` produce output, else they produce nothing. -todo_include_todos = True \ No newline at end of file +todo_include_todos = True diff --git a/source/images/CAcert-logo-colour.svg b/source/images/CAcert-logo-colour.svg new file mode 100644 index 0000000..0d8e071 --- /dev/null +++ b/source/images/CAcert-logo-colour.svg @@ -0,0 +1,46 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/source/images/favicon.ico b/source/images/favicon.ico new file mode 100644 index 0000000..3c9c9c2 Binary files /dev/null and b/source/images/favicon.ico differ