-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (33 loc) · 968 Bytes
/
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-GB'>
<head>
<meta charset='utf-8'>
<title>Statebox Dashboard</title>
</head>
<body>
<div id="net1"
style="float: left; width:50%; background-color: cadetblue; height:350px">
</div>
<div id="net2"
style="float:left; width:50%; background-color: lightblue; height:350px">
</div>
<div id='container'>loading</div>
<script id='template' type='text/ractive'>
<div id="net1data" style="float: left; width:50%">
<h4>Net</h4>
{{#net1}}
<code>{{(.[0]).join(' ')}}</code> → <code>{{(.[1]).join(' ')}}</code><br/>
{{/}}
</div>
<div id="net2data" style="float: left; width:50%">
<h4>It's dual</h4>
{{#net2}}
<code>{{(.[0]).join(' ')}}</code> → <code>{{(.[1]).join(' ')}}</code><br/>
{{/}}
</div>
</script>
<script src='vendor/ractive.min.js'></script>
<script src='vendor/go.js'></script>
<script src='bundle.js'></script>
</body>
</html>