From 3d74d028a2a185f9d2181cdf4ff26661f1697596 Mon Sep 17 00:00:00 2001 From: GeorgianaElena Date: Tue, 20 Oct 2020 14:57:40 +0300 Subject: [PATCH] Fix html_sidebars to match current sphinx theme --- docs/conf.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index b12d82d..f554004 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -52,10 +52,11 @@ if os.path.exists(os.path.join(here, '_static')): # and seems to be hard to control. html_sidebars = { '**': [ - 'about.html', + # from pydata_sphinx_theme + 'sidebar-nav-bs.html', + 'sidebar-search-bs.html' + # from sphinx builtins 'globaltoc.html', 'relations.html', - 'searchbox.html', - 'donate.html', ] }