0.12.0
You can now specify the source code URL, and it will show in the nav bar.
Just do the following:
# conf.py
html_theme_options = {
"source_url": 'https://github.com/piccolo-orm/piccolo_theme/'
}
The icon is inferred automatically based on the URL (in the above example, we show the GitHub logo). You can explicitly set the icon if you prefer:
# conf.py
html_theme_options = {
"source_url": 'https://self-hosted.foo.com/',
"source_icon": "gitlab"
}