-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (37 loc) · 1.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Void Song</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="main.css">
<link href="https://fonts.googleapis.com/css?family=Saira+Condensed:400,500" rel="stylesheet">
<script type="module" src="main.js"></script>
<script type="module" src="ui/void_button.js"></script>
<script type="module" src="ui/void_page.js"></script>
<script type="module" src="ui/void_page_switcher.js"></script>
</head>
<body>
<div id="primaryColumn">
<void-page-switcher id="primarySwitcher" index="0">
<void-page header="Tactical" id="tacticalPage">
<canvas id="tactical" width="600" height="600"></canvas>
<void-button id="plotJumpButton">Plot jump</void-button>
</void-page>
<void-page header="Systems" id="systemsPage">
</void-page>
</void-page-switcher>
</div>
<div id="secondaryColumn">
<void-page header="Status" id="statusPage">
<div id="batteryGraph"></div>
<div id="reactorGraph"></div>
<div id="jumpDriveGraph"></div>
</void-page>
<void-page header="Debug" id="debugPage">
<div id="debug"></div>
</void-page>
</div>
</body>
</html>