Spaces:
Sleeping
Sleeping
Update templates/index.html
Browse files- templates/index.html +2 -2
templates/index.html
CHANGED
|
@@ -4,7 +4,7 @@
|
|
| 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='
|
| 8 |
<script src="https://unpkg.com/konva@9/konva.min.js"></script>
|
| 9 |
</head>
|
| 10 |
<body>
|
|
@@ -12,6 +12,6 @@
|
|
| 12 |
<div id="controls">
|
| 13 |
<button onclick="addNode()">Add Node</button>
|
| 14 |
</div>
|
| 15 |
-
<script src="{{ url_for('static', filename='
|
| 16 |
</body>
|
| 17 |
</html>
|
|
|
|
| 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='styles.css') }}">
|
| 8 |
<script src="https://unpkg.com/konva@9/konva.min.js"></script>
|
| 9 |
</head>
|
| 10 |
<body>
|
|
|
|
| 12 |
<div id="controls">
|
| 13 |
<button onclick="addNode()">Add Node</button>
|
| 14 |
</div>
|
| 15 |
+
<script src="{{ url_for('static', filename='canvas.js') }}"></script>
|
| 16 |
</body>
|
| 17 |
</html>
|