Customize theme to have better links in sidebar

Fixes #61
This commit is contained in:
yuvipanda
2018-07-28 13:44:39 -07:00
parent 1ba7a3a565
commit bf73783ef6

View File

@@ -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'
}
}