commit 24accfa29a67553c1a9ac1fc62ac06dad26b1bb9
parent f90d337806ce3a38d0869289fcde2d087d4d3aa2
Author: Martin Schanzenbach <schanzen@gnunet.org>
Date: Mon, 1 Aug 2022 10:37:32 +0200
theme
Diffstat:
1 file changed, 16 insertions(+), 1 deletion(-)
diff --git a/conf.py b/conf.py
@@ -49,12 +49,27 @@ exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
#
html_theme = 'sphinx_rtd_theme'
+html_theme_options = {
+ 'logo_only': True,
+ 'display_version': False,
+ 'prev_next_buttons_location': 'bottom',
+ 'style_external_links': False,
+ #'vcs_pageview_mode': '',
+ 'style_nav_header_background': 'white',
+ # Toc options
+ 'collapse_navigation': True,
+ 'sticky_navigation': True,
+ 'navigation_depth': 4,
+ 'includehidden': True,
+ 'titles_only': False
+}
+
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
-html_logo = "_static/images/gnunet-black.png"
+html_logo = "_static/images/gnunet-blue.png"
myst_enable_extensions = [
"amsmath",