Create new file
Browse files- templates/nteract.html +13 -0
templates/nteract.html
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{% import 'macro' as macro %}
|
2 |
+
<!DOCTYPE html>
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<meta charset="UTF-8">
|
6 |
+
{{ macro.render_chart_dependencies(chart) }}
|
7 |
+
</head>
|
8 |
+
<body>
|
9 |
+
{% for c in chart %}
|
10 |
+
{{ macro.render_chart_content(c) }}
|
11 |
+
{% endfor %}
|
12 |
+
</body>
|
13 |
+
</html>
|