From: Jessica Wagantall Date: Tue, 26 May 2020 16:28:51 +0000 (-0700) Subject: Fix HTML layout X-Git-Tag: 6.0.0-ONAP~20 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=f7b567a253339a56724575030114e36b2db31c62;p=integration.git Fix HTML layout Looks like this repo was missing the HTML layout template where we can call the css files. Update name of css file in conf.py to just "ribbon" Issue-ID: CIMAN-376 Signed-off-by: Jessica Wagantall Change-Id: Id4da929ad9e3c936c12ad6f57e3b524c198d63e0 --- diff --git a/docs/conf.py b/docs/conf.py index 3b562d1d0..919596d97 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -18,8 +18,9 @@ linkcheck_ignore = [ intersphinx_mapping = {} +html_theme = 'sphinx_rtd_theme' html_last_updated_fmt = '%d-%b-%y %H:%M' html_theme_options = {'body_max_width': '100%'} def setup(app): - app.add_stylesheet("css/ribbon_onap.css") + app.add_stylesheet("css/ribbon.css")