refactor(body) moved body from layout to separate pages

this allows us to wrap the body with custom divs for each page if necessary
This commit is contained in:
Walker Waylon Scott 2017-07-17 22:26:42 -05:00
parent f3e0650d1b
commit 908a4608a1
4 changed files with 11 additions and 5 deletions

View file

@ -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 @@
</div>
</nav>
{{ body | safe }}
{% endblock %}
</body>
</html>