summaryrefslogtreecommitdiff
path: root/source/conf.py
diff options
context:
space:
mode:
authorJoseph Long <jlong@stsci.edu>2016-04-29 15:36:25 -0400
committerJoseph Long <jlong@stsci.edu>2016-04-29 15:36:25 -0400
commit7d40a95193c21409c1ba51586e057cefe32e1632 (patch)
tree6e880f0a9444e9ad9a11398e7d290af330d75eeb /source/conf.py
parent033c0a19c872390b9ef85b57e6b1b54dacd18dba (diff)
downloadastroconda-7d40a95193c21409c1ba51586e057cefe32e1632.tar.gz
Changes to theme config
Diffstat (limited to 'source/conf.py')
-rw-r--r--source/conf.py18
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.