diff --git a/docs/conf.py b/docs/conf.py index b6ee5ce..4a2ab51 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -39,6 +39,9 @@ import alabaster_jupyterhub html_theme = 'alabaster_jupyterhub' html_theme_path = [alabaster_jupyterhub.get_html_theme_path()] +html_logo = 'images/logo/logo.png' +html_favicon = 'images/logo/favicon.ico' + # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". @@ -68,5 +71,6 @@ html_theme_options = { 'github_user': 'jupyterhub', 'github_repo': 'the-littlest-jupyterhub', 'github_button': True, - 'github_banner': True, + 'github_banner': False, + 'github_type': 'star', } diff --git a/docs/images/logo/favicon.ico b/docs/images/logo/favicon.ico new file mode 100644 index 0000000..ffdf84e Binary files /dev/null and b/docs/images/logo/favicon.ico differ diff --git a/docs/images/logo/logo.png b/docs/images/logo/logo.png new file mode 100644 index 0000000..7cdfc55 Binary files /dev/null and b/docs/images/logo/logo.png differ