-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (32 loc) · 895 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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<link rel="stylesheet" href="stylesheet.css">
<title>Bob-powered Zepchain status</title>
</head>
<body class="Aligner">
<script src="//code.jquery.com/jquery-2.1.3.min.js"></script>
<script src="config.js"></script>
<script src="main.js"></script>
<table>
<tr>
<td id='zep1' class='unknown'>☐</td>
<td>Zeppelin 1</td>
</tr>
<tr>
<td id='zep2' class='unknown'>☐</td>
<td>Zeppelin 2</td>
</tr>
<tr>
<td id='zep3' class='unknown'>☐</td>
<td>Zeppelin 3</td>
</tr>
</table>
<script>
updateStatus();
setInterval(updateStatus, 5*1000);
</script>
</body>
</html>