forked from makeanedublocksblock/EduBlocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (34 loc) · 1.47 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="description" content="EduBlocks" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0" />
<title>EduBlocks</title>
<link rel="icon" type="image/png" href="images/logo.png" />
<link rel="stylesheet" href="lib/xterm.js/xterm.css" />
<script src="lib/xterm.js/xterm.js"></script>
<script src="lib/xterm.js/addons/fit/fit.js"></script>
<link rel="stylesheet" href="fonts/icons/css/fontello.css" />
<link rel="stylesheet" href="node_modules/picnic/picnic.min.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/bluebird/3.3.5/bluebird.min.js"></script>
<!-- Page styles -->
<link rel="stylesheet" href="css/editor.css" />
<link rel="stylesheet" href="css/themes.css" />
</head>
<body>
<div id="page">
<!-- React -->
<p class="loading-message">Loading...</p>
</div>
<!-- The main Blockly files -->
<script src="blockly/blockly_compressed.js"></script>
<script src="blockly/python_compressed.js"></script>
<script src="blockly/msg/js/en.js"></script>
<script src="lib/ace9/ace.js" type="text/javascript" charset="utf-8"></script>
<script src="lib/ace9/mode-python.js" type="text/javascript" charset="utf-8"></script>
<script src="lib/ace9/theme-monokai.js" type="text/javascript" charset="utf-8"></script>
<script src="dist/main.js"></script>
</body>
</html>