14 Page Without Sidebar#

This page has no sidebar, because an empty list of sidebar templates was chosen for html_sidebars in conf.py:

Listing 14.1 conf.py#
70
71
72
73
74
75
76
77
78
79
80
81
82
83
html_sidebars = {
   '**': [
       'github-badge.html',  # Custom template, see _templates/
       'home.html',
       'globaltoc.html',
       'separator.html',
       'indices.html',
   ],
   'showcase/different-sidebar': [
       'localtoc.html',
       'searchbox.html',
   ],
   'showcase/no-sidebar': [],
}

If you don’t want to show the sidebar at all, you can disable it globally with the theme option nosidebar.