Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,25 @@
# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
# documentation.
html_theme_options = {"navigation_with_keys": False}
html_theme_options = {
"icon_links": [
{
"name": "GitHub",
"url": "https://github.com/jupyter-server/jupyter_server",
"icon": "fab fa-github-square",
}
],
"navigation_with_keys": False,
"use_edit_page_button": True,
}

# Output for github to be used in links
html_context = {
"github_user": "jupyter-server", # Username
"github_repo": "jupyter_server", # Repo name
"github_version": "main", # Version
"doc_path": "docs/source/", # Path in the checkout to the docs root
}

# Add any paths that contain custom themes here, relative to this directory.
# html_theme_path = []
Expand Down