This repository has been archived by the owner on Sep 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
69 lines (62 loc) · 2.31 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html oncontextmenu="return false" lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="a minimal graphical programming language">
<meta property="og:image" content="https://comfies.github.io/odko/logo/odko128.png">
<meta property="og:image:width" content="128">
<meta property="og:image:height" content="128">
<link rel="shortcut icon" href="logo/odko128.png" type="image/png">
<link rel="stylesheet" href="src/odko.css">
<script defer src="src/lib/util.js"></script>
<script defer src="src/lib/console.js"></script>
<script defer src="src/lib/running.js"></script>
<script defer src="src/odko.js"></script>
<script defer src="src/lib/events.js"></script>
<script defer src="src/lib/ui.js"></script>
<title>odko</title>
</head>
<body>
<!-- help js get css measurements -->
<div id="em"></div>
<div id="ch"></div>
<!-- editing cursor -->
<div id="cursor" class="cursor hidden"></div>
<!-- connections wrapper -->
<svg id="lines-wrapper" xmlns="http://www.w3.org/2000/svg" stroke="#dddddd" stroke-width="2">
<!-- connections container, this is scrolled via the x & y attributes -->
<svg id="lines" x="0" y="0">
<!-- preview connection-->
<line id="preview-line" class="hidden" stroke="#dddddd"></line>
</svg>
</svg>
<!-- status bar -->
<div class="status">
<span id="status-left" class="left"></span>
<span id="status-right" class="right"></span>
</div>
<!-- sidebar -->
<div id="sidebar" class="sidebar">
<!-- manage current project -->
<div id="sidebar-project" class="section project"></div>
<!-- manage branches/functions -->
<div id="sidebar-branches" class="section branches"></div>
</div>
<!-- columns -->
<div id="columns" class="columns"></div>
<!-- console -->
<div id="console-wrapper" class="console wrapper hidden">
<div id="console-titlebar" class="console titlebar">console</div>
<div class="console container">
<!-- the way i'm keeping this centered is so fucking dirty i'm sorry -->
<canvas id="console-canvas" class="console canvas"></canvas>
</div>
</div>
<!-- context menus-->
<div id="context-wrapper" class="context wrapper hidden">
<!-- <a data-hotkey="a">add block</a> -->
</div>
</body>
</html>