diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2014-02-14 12:10:02 -0800 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2014-02-14 12:10:02 -0800 |
commit | 6cdb8291b7dc76ae1f0b0071738633fc986b9b66 (patch) | |
tree | bee9171db9962bff5e74570052d03bb347666e36 /sites/shared_conf.py | |
parent | b140b29d542e9a0ee1d5c013e3612b8a16ca851b (diff) | |
parent | 30518280f1356465f0acfdb4816843b61303a633 (diff) |
Merge branch '1.10' into sphinx-256
Diffstat (limited to 'sites/shared_conf.py')
-rw-r--r-- | sites/shared_conf.py | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/sites/shared_conf.py b/sites/shared_conf.py index 89e0a56d..86ecdfe8 100644 --- a/sites/shared_conf.py +++ b/sites/shared_conf.py @@ -5,14 +5,13 @@ import sys import alabaster -# Alabaster theme +# Alabaster theme + mini-extension html_theme_path = [alabaster.get_path()] +extensions = ['alabaster'] # Paths relative to invoking conf.py - not this shared file html_static_path = ['../_shared_static'] html_theme = 'alabaster' html_theme_options = { - 'logo': 'logo.png', - 'logo_name': 'true', 'description': "A Python implementation of SSHv2.", 'github_user': 'paramiko', 'github_repo': 'paramiko', @@ -21,19 +20,11 @@ html_theme_options = { 'link': '#3782BE', 'link_hover': '#3782BE', - } html_sidebars = { - # Landing page (no ToC) - 'index': [ - 'about.html', - 'searchbox.html', - 'donate.html', - ], - # Inner pages get a ToC '**': [ 'about.html', - 'localtoc.html', + 'navigation.html', 'searchbox.html', 'donate.html', ] @@ -42,7 +33,7 @@ html_sidebars = { # Regular settings project = u'Paramiko' year = datetime.now().year -copyright = u'%d Jeff Forcier, 2003-2012 Robey Pointer' % year +copyright = u'%d Jeff Forcier' % year master_doc = 'index' templates_path = ['_templates'] exclude_trees = ['_build'] |