split engine/ into manifold/ (backend oriented) and unfold/ (the UI)
[unfold.git] / unfold / templates / header-prelude.html
diff --git a/unfold/templates/header-prelude.html b/unfold/templates/header-prelude.html
new file mode 100644 (file)
index 0000000..e75c7c5
--- /dev/null
@@ -0,0 +1,12 @@
+{% for js_file in js_files %}
+<script type='text/javascript' src='{{ STATIC_URL }}{{ js_file|safe }}'></script>
+{% endfor %}
+{% for css_file in css_files %}
+<link rel='stylesheet' type='text/css' href='{{ STATIC_URL }}{{ css_file|safe }}' />
+{% endfor %}
+<script type="text/javascript">
+{% for js_chunk in js_chunks %} {{ js_chunk|safe }} {% endfor %}
+</script>
+<style type="text/css">
+{% for css_chunk in css_chunks %} {{ css_chunk|safe }} {% endfor %}
+</style>