diff --git a/src/templates/enthusiast.html b/src/templates/enthusiast.html index d102c2b..cbd2ea8 100644 --- a/src/templates/enthusiast.html +++ b/src/templates/enthusiast.html @@ -18,6 +18,7 @@ {% block body %} {{ super ()}} + {{ body | safe }}
@@ -60,9 +61,7 @@ Cras eu posuere est, a tincidunt diam. Cras et volutpat massa. Ut in ante conseq

Sentiment

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla suscipit dignissim purus at tincidunt. Nam dapibus magna ultricies, sollicitudin tortor id, convallis risus. Morbi convallis pharetra dictum. Proin rutrum finibus justo, eu lobortis felis condimentum sed. Quisque lorem tellus, tempor eu eleifend a, tristique vel mauris.
-
-
Sentiment Chart -
+
diff --git a/src/templates/investor.html b/src/templates/investor.html index 5fc6584..79e5928 100644 --- a/src/templates/investor.html +++ b/src/templates/investor.html @@ -16,4 +16,5 @@ {% block body %} {{ super ()}} + {{ body | safe }} {% endblock %} \ No newline at end of file diff --git a/src/templates/layout.html b/src/templates/layout.html index 94fbdde..1d47e62 100644 --- a/src/templates/layout.html +++ b/src/templates/layout.html @@ -22,7 +22,8 @@ {% set navigation_bar = [ ('/investor', 'investor', 'Investor'), ('/enthusiast', 'enthusiast', 'Enthusiast'), - ('/slides', 'slides', 'Slides') + ('/Exploritory', 'exploritory', 'Exploritory'), + ('/slides', 'slides', 'Slides'), ] -%} {% set active_page = active_page|default('index') -%} @@ -44,7 +45,7 @@
-{{ body | safe }} + {% endblock %} diff --git a/src/templates/slides.html b/src/templates/slides.html index 8ef2412..2dfa3fd 100644 --- a/src/templates/slides.html +++ b/src/templates/slides.html @@ -22,4 +22,9 @@ link.href = window.location.search.match( /print-pdf/gi ) ? 'static/css/print/pdf.css' : 'static/css/print/paper.css'; document.getElementsByTagName( 'head' )[0].appendChild( link ); +{% endblock %} + +{% block body %} + {{ super ()}} + {{ body | safe }} {% endblock %} \ No newline at end of file