-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
42 lines (41 loc) · 1.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Tardigrade</title>
<!-- import library stylesheets -->
<link rel="stylesheet" href="lib/dragula.min.css" />
<!-- import the webpage's stylesheets -->
<link rel="stylesheet" href="css/block_colors.css" />
<link
rel="stylesheet"
href="css/block.css"
<link
rel="stylesheet"
href="lib/dragula.min.css"
/>
<link rel="stylesheet" href="css/app.css" />
</head>
<body>
<section class="branding">
<img class="logo" src="images/waterbear_icon_logo.svg" />
<h1>Tardigrade</h1>
</section>
<section class="filemenu">
<button class="file" onclick="openFileMenu()">File</button>
<button class="examples" onclick="openExamples()">Examples</button>
</section>
<section class="runmenu">
<button class="run" onclick="runScript()">Run</button>
<button class="stop" onclick="stopScript()">Stop</button>
</section>
<section class="blocks"><div class="blockmenu"></div></section>
<section class="target"><tg-contains class="script"></tg-contains></section>
<section class="stage"></section>
<section class="moonshine"></section>
<!-- import the webpage's javascript files -->
<script type="module" src="js/app.js"></script>
</body>
</html>