From 957a6e445ccc0121b77e1d3d203012fa929404f4 Mon Sep 17 00:00:00 2001 From: J0J0 Todos Date: Sat, 21 Oct 2023 10:39:56 +0200 Subject: [PATCH] Set and configure Sphinx theme "pydata" - Collapse nav - Add title "beets" next to small logo on top left --- docs/conf.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index d7c9858aa..c9b2280f1 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -59,14 +59,13 @@ man_pages = [ ), ] -# Options for rtd theme -html_theme = 'sphinx_rtd_theme' +# Options for pydata theme +html_theme = 'pydata_sphinx_theme' html_theme_options = { - 'sticky_navigation': True, 'collapse_navigation': True, - "style_nav_header_background": "#ffffff", - 'logo_only': False, - 'display_version': True, + "logo": { + "text": "beets", + }, } html_title = "beets" html_logo = "assets/beets_logo.png"