An alternative that I found by reading the alabaster topic should explicitly indicate which (if any sidebars) are desired in the conf.py file. For example, including this snippet in conf.py :
html_theme = 'alabaster' html_sidebars = { '**': [ 'about.html', 'navigation.html', 'searchbox.html', ] }
Creates a search field removing searchbox.html from this list and then will create the same page, but without it. (For more information, see the Sphinx documentation for the assembly configuration file .)
source share