changxin commited on
Commit
947b136
·
1 Parent(s): 7b15315

Create new file

Browse files
Files changed (1) hide show
  1. 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>