We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31abfdd commit a33ae83Copy full SHA for a33ae83
Documentation/conf.py
@@ -345,7 +345,11 @@ def get_cline_version():
345
346
# Custom sidebar templates, maps document names to template names.
347
# Note that the RTD theme ignores this
348
-html_sidebars = { '**': ["about.html", 'searchbox.html', 'localtoc.html', 'sourcelink.html']}
+html_sidebars = { '**': ['searchbox.html', 'localtoc.html', 'sourcelink.html']}
349
+
350
+# about.html is available for alabaster theme. Add it at the front.
351
+if html_theme == 'alabaster':
352
+ html_sidebars['**'].insert(0, 'about.html')
353
354
# Output file base name for HTML help builder.
355
htmlhelp_basename = 'TheLinuxKerneldoc'
0 commit comments