diff options
Diffstat (limited to 'source/conf.py')
-rw-r--r-- | source/conf.py | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/source/conf.py b/source/conf.py index 85d0f17..87d108e 100644 --- a/source/conf.py +++ b/source/conf.py @@ -15,6 +15,7 @@ import sys import os +import alabaster # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the @@ -31,6 +32,7 @@ import os # ones. extensions = [ 'sphinx.ext.coverage', + 'alabaster', ] # Add any paths that contain templates here, relative to this directory. @@ -115,10 +117,14 @@ html_theme = 'alabaster' # 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 = { + 'logo_name': True, + 'github_user': 'astroconda', + 'github_repo': 'astroconda', +} # Add any paths that contain custom themes here, relative to this directory. -#html_theme_path = [] +html_theme_path = [alabaster.get_path()] # The name for this set of Sphinx documents. If None, it defaults to # "<project> v<release> documentation". @@ -155,7 +161,13 @@ html_static_path = ['_static'] #html_use_smartypants = True # Custom sidebar templates, maps document names to template names. -#html_sidebars = {} +html_sidebars = { + '**': [ + 'about.html', + 'navigation.html', + 'searchbox.html', + ] +} # Additional templates that should be rendered to pages, maps page names to # template names. |