From bf73783ef6b3aebc62ad26d064d4b1075a7c66b9 Mon Sep 17 00:00:00 2001 From: yuvipanda Date: Sat, 28 Jul 2018 13:44:39 -0700 Subject: [PATCH] Customize theme to have better links in sidebar Fixes #61 --- docs/conf.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index 3395052..4da0f73 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -36,3 +36,14 @@ html_theme = 'alabaster' # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ['_static'] + +# Custom Alabaster theme options +html_theme_options = { + 'description': 'A simple JupyterHub distribution for 1-100 users', + 'github_user': 'jupyterhub', + 'github_repo': 'the-littlest-jupyterhub', + 'github_button': 'true', + 'extra_nav_links': { + 'Documentation confusing? File an issue!': 'https://github.com/jupyterhub/the-littlest-jupyterhub/issues' + } +}