broadfield-dev commited on
Commit
bcc43d3
·
verified ·
1 Parent(s): 0bc0f20

Create templates/index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +17 -0
templates/index.html ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Node Canvas</title>
7
+ <link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
8
+ <script src="https://unpkg.com/konva@9/konva.min.js"></script>
9
+ </head>
10
+ <body>
11
+ <div id="container"></div>
12
+ <div id="controls">
13
+ <button onclick="addNode()">Add Node</button>
14
+ </div>
15
+ <script src="{{ url_for('static', filename='js/canvas.js') }}"></script>
16
+ </body>
17
+ </html>