diff --git a/graphic_templates/_base/base_template.html b/graphic_templates/_base/base_template.html
index ab1e3743..576ea7df 100644
--- a/graphic_templates/_base/base_template.html
+++ b/graphic_templates/_base/base_template.html
@@ -4,6 +4,7 @@
Graphic : NPR
+
@@ -47,24 +48,28 @@
- {{ JS.push('js/helpers.js') }}
- {{ JS.push('js/analytics.js') }}
- {{ JS.render('js/graphic-header.js') }}
+
+ {{ JS.push('js/helpers.js') }}
+ {{ JS.push('js/analytics.js') }}
+ {{ JS.render('js/graphic-header.js') }}
+
+
+ {% block content %}
- {% block content %}
+ The child template content goes here!
- The child template content goes here!
-
- {% endblock content %}
-
-
- {% block js %}
- {{ JS.push('js/lib/underscore.js') }}
- {{ JS.push('js/lib/d3.min.js') }}
- {{ JS.push('js/lib/modernizr.svg.min.js') }}
- {{ JS.push('js/base.js') }}
- {{ JS.push('js/graphic.js') }}
- {{ JS.render('js/graphic-footer.js') }}
- {% endblock js %}
+ {% endblock content %}
+
+