File tree Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change 3636on_rtd = os .environ .get ('READTHEDOCS' , None ) == 'True'
3737
3838if not on_rtd : # only set the theme if we're building docs locally
39- html_theme = 'sphinx_rtd_theme '
39+ html_theme = 'alabaster '
4040
4141html_use_smartypants = True
4242html_last_updated_fmt = '%b %d, %Y'
4343html_split_index = False
4444html_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+
4759html_short_title = '%s-%s' % (project , version )
4860
4961napoleon_use_ivar = True
You can’t perform that action at this time.
0 commit comments