Skip to content

Commit 4e1223a

Browse files
committed
fixing theming
1 parent 3f16702 commit 4e1223a

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

docs/conf.py

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,26 @@
3636
on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
3737

3838
if not on_rtd: # only set the theme if we're building docs locally
39-
html_theme = 'sphinx_rtd_theme'
39+
html_theme = 'alabaster'
4040

4141
html_use_smartypants = True
4242
html_last_updated_fmt = '%b %d, %Y'
4343
html_split_index = False
4444
html_sidebars = {
45-
'**': ['searchbox.html', 'globaltoc.html', 'sourcelink.html'],
45+
'**': [
46+
'about.html',
47+
'searchbox.html',
48+
'globaltoc.html',
49+
'sourcelink.html'
50+
],
4651
}
52+
html_theme_options = {
53+
'description': 'Python client for QuestDB',
54+
'github_button': True,
55+
'github_user': 'questdb',
56+
'github_repo': 'py-questdb-client',
57+
}
58+
4759
html_short_title = '%s-%s' % (project, version)
4860

4961
napoleon_use_ivar = True

0 commit comments

Comments
 (0)