diff --git a/docs/conf.py b/docs/conf.py index 5089d5e..29602c5 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -46,17 +46,17 @@ html_context = { "source_suffix": source_suffix, } -# The name of an image file (relative to this directory) to place at the top -# of the sidebar. -html_logo = "../static/i/favicon.png" - -# 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_css_files = [ - "rtd_dark.css", -] +html_theme_options = { + "style_external_links": True, + "flyout_display": "hidden", + "version_selector": True, + # Toc options + "collapse_navigation": True, + "sticky_navigation": True, + "navigation_depth": 4, + "includehidden": True, + "titles_only": False, +} # Output file base name for HTML help builder. htmlhelp_basename = "Dangerzonedoc"