aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJessica Wagantall <jwagantall@linuxfoundation.org>2020-05-26 09:28:51 -0700
committerMorgan Richomme <morgan.richomme@orange.com>2020-05-27 09:14:03 +0000
commitf7b567a253339a56724575030114e36b2db31c62 (patch)
tree2ec0a632a955a2a9574279cd77ed675fc763ea07
parentabd5fcf77bc6a89f424c270ae2d1658f39225e5e (diff)
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 <jwagantall@linuxfoundation.org> Change-Id: Id4da929ad9e3c936c12ad6f57e3b524c198d63e0
-rw-r--r--docs/conf.py3
1 files changed, 2 insertions, 1 deletions
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")