update(template layouts) block head

moved page specific head to their own template files

Signed-off-by: Walker Waylon Scott <walker_waylon_s@cat.com>
This commit is contained in:
Walker Waylon Scott 2017-07-02 11:35:22 -05:00
parent f5e4b5f006
commit 8041ee606a
3 changed files with 21 additions and 7 deletions

View file

@ -1,2 +1,10 @@
{% extends "layout.html" %}
{% set active_page = "enthusiast" %}
{% set active_page = "enthusiast" %}
{% block title %}enthusiast{% endblock %}
{% block head %}
{{ super() }}
<!-- Load d3.js and c3.js -->
<script src='http://d3js.org/d3.v3.min.js' charset='utf-8'></script>
<script src='http://cdnjs.cloudflare.com/ajax/libs/c3/0.4.10/c3.min.js'></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
{% endblock %}