Skip to content
This repository has been archived by the owner on May 7, 2022. It is now read-only.

Commit

Permalink
Changed sphinx theme to alabaster
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminSchaaf committed Jul 8, 2016
1 parent bc6462c commit 69283a2
Showing 1 changed file with 22 additions and 4 deletions.
26 changes: 22 additions & 4 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
master_doc = 'index'

# General information about the project.
project = 'Daffodil'
project = 'daffodil'
copyright = '2015, Cameron Lonsdale, Benjamin Schaaf'

# The version info for the project you're documenting, acts as replacement for
Expand Down Expand Up @@ -103,12 +103,22 @@

# 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 = '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': None,
'logo_name': True,
'description': 'Image Processing Library for D',
'github_user': 'BenjaminSchaaf',
'github_repo': 'daffodil',
'github_button': False,
'github_banner': True,
'travis_button': True,
'page_width': '1420px',
}

# Add any paths that contain custom themes here, relative to this directory.
#html_theme_path = []
Expand Down Expand Up @@ -148,7 +158,15 @@
#html_use_smartypants = True

# Custom sidebar templates, maps document names to template names.
#html_sidebars = {}
html_sidebars = {
'**': [
'about.html',
'navigation.html',
'relations.html',
'searchbox.html',
'donate.html',
]
}

# Additional templates that should be rendered to pages, maps page names to
# template names.
Expand Down

0 comments on commit 69283a2

Please sign in to comment.