Skip to content

Commit

Permalink
Align header left, add header icons and external links
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Oct 24, 2024
1 parent 453af2d commit 77ede87
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -338,9 +338,30 @@
# 'issues_url': '/bugs.html',
# 'license_url': '/license.html',
# 'root_include_title': False, # We use the version switcher instead.
"external_links": [
{"name": "Discuss", "url": "https://discuss.python.org/"},
{"name": "GitHub", "url": "https://github.com/python/cpython"},
{"name": "Issues", "url": "https://github.com/python/cpython/issues"},
{"name": "Developer's guide", "url": "devguide.python.org"},
],
"icon_links": [
{
"name": "Discuss",
"url": "https://discuss.python.org/",
"icon": "fa-brands fa-discourse",
"type": "fontawesome",
},
{
"name": "GitHub",
"url": "https://github.com/python/cpython",
"icon": "fa-brands fa-square-github",
"type": "fontawesome",
},
],
"logo": {
"text": f"Python {release}",
},
"navbar_align": "left",
}
html_logo = "https://devguide.python.org/_static/python-logo.svg"

Expand Down

0 comments on commit 77ede87

Please sign in to comment.