This repository has been archived by the owner on Aug 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (73 loc) · 2.4 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
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
<head>
<title>Photon</title>
<!-- Stylesheets -->
<link rel="stylesheet" href="./css/photon.css">
<link rel="stylesheet" type="text/css" href="./node_modules/switchery/switchery.css">
</head>
<body>
<!-- Wrap your entire app inside .window -->
<div class="window">
<!-- .toolbar-header sits at the top of your app
<header class="toolbar toolbar-header">
<h1 class="title">Ground Station - alpha</h1>
</header>
-->
<!-- Your app's content goes inside .window-content -->
<div class="window-content">
<div class="pane-group">
<div class="pane-sm sidebar">
<nav class="nav-group">
<h5 class="nav-group-title">Ground Station</h5>
<a class="nav-group-item active">
<span class="icon icon-home"></span>
Home
</a>
<span class="nav-group-item">
<span class="icon icon-direction"></span>
Flight
</span>
<span class="nav-group-item">
<span class="icon icon-chart-line"></span>
Graphs
</span>
<span class="nav-group-item">
<span class="icon icon-compass"></span>
Positioning
</span>
<span class="nav-group-item">
<span class="icon icon-gauge"></span>
Performance
</span>
<span class="nav-group-item">
<span class="icon icon-cog"></span>
Configurations
</span>
<span class="nav-group-item">
<span class="icon icon-info"></span>
Info
</span>
</nav>
</div>
<div class="pane">
<div class="padded-more">
<!--
<h1>Hey</h1>
<div>
<input type="checkbox" class="js-switch" />
</div>
<ul id="serial-ports">
</ul>
-->
<div>
<button onclick="clearScene()">Clear</button>
</div>
<div id="canvas" style="width: 90%; height: 75%; position: absolute;"></div>
</div>
</div>
</div>
</div>
</body>
<script src="app.js" charset="utf-8"></script>
</html>