From 138d536ab88103b17505f6d5c70613b1cd7c8f6e Mon Sep 17 00:00:00 2001 From: Sean McGinnis Date: Fri, 14 Sep 2018 10:49:49 -0500 Subject: [PATCH] Disable cycle banner The project-team-guide is not a per-cycle document but currently displays the top banner warning that it is not the version for the currently supported release. This sets the openstackdocstheme option to disable this behavior. Change-Id: If8ba9748b07a20e07e2664f48ea452e595c82f3d Signed-off-by: Sean McGinnis --- doc/source/conf.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index 43ff219..3cfd9b5 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -107,7 +107,9 @@ html_extra_path = ['_extra'] # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the # documentation. -#html_theme_options = {} +html_theme_options = { + "display_badge": False, +} # Add any paths that contain custom themes here, relative to this directory. #html_theme_path = []