diff options
author | 2024-07-25 20:55:46 +0200 | |
---|---|---|
committer | 2024-07-25 20:56:44 +0200 | |
commit | f38c2dd8fe8b426f3d0d9a05977ab58b058400ad (patch) | |
tree | 7a62ca8005c5f067077f42c5acee1d962eede312 /docs/conf.py | |
parent | Move meeting notes to the bottom (diff) |
Prettify sidebar
Diffstat (limited to 'docs/conf.py')
-rw-r--r-- | docs/conf.py | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/docs/conf.py b/docs/conf.py index ff45466..dcbdd62 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -6,7 +6,7 @@ # -- Project information ----------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information -project = "Python Discord DevOps" +project = "DevOps" copyright = "2024, Python Discord" author = "Joe Banks <[email protected]>, King Arthur <[email protected]>" @@ -24,3 +24,17 @@ exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] html_theme = "alabaster" html_static_path = ["_static"] +html_theme_options = { + "logo": "logo.png", + "logo_name": True, + "logo_text_align": "center", + "github_user": "python-discord", + "github_repo": "infra", + "github_button": True, + "extra_nav_links": { + "DevOps on YouTube": "https://www.youtube.com/watch?v=b2F-DItXtZs", + "git: Infra": "https://github.com/python-discord/infra/", + "git: King Arthur": "https://github.com/python-discord/king-arthur/", + "Kanban Board": "https://github.com/orgs/python-discord/projects/17/views/4", + } +} |