diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | docs/conf.py | 5 |
2 files changed, 6 insertions, 1 deletions
@@ -15,6 +15,8 @@ friendly now. * README.rst: Added fancy buttons from shields.io that show stats about combox slurped from pypi. + * docs/conf.py: added `extra_nav_links` to `html_theme_options` + dict; it contains a link to combox's web-browsable git repository. 2015-12-23 Siddharth Ravikumar <sravik@bgsu.edu> diff --git a/docs/conf.py b/docs/conf.py index bb7169d..89600a9 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -124,7 +124,10 @@ html_theme = 'alabaster' # documentation. html_theme_options = { 'logo': 'img/combox-logo.png', - 'github_button': False + 'github_button': False, + 'extra_nav_links': { + 'browse source': 'https://git.ricketyspace.net/combox', + } } # Add any paths that contain custom themes here, relative to this directory. |