forked from markduwe/Raspberry-Pi-Clock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
display.html
47 lines (43 loc) · 1.92 KB
/
display.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
<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="utf-8">
<title>pi clock</title>
<meta name="viewport" content="width=800, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,900">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/MaterialDesign-Webfont/1.8.36/css/materialdesignicons.min.css" />
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/weather-icons/2.0.9/css/weather-icons.min.css" />
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/weather-icons/2.0.9/css/weather-icons-wind.min.css" />
<link rel="stylesheet" type="text/css" href="css/foundation.min.css" />
<link rel="stylesheet" type="text/css" href="css/pi.css" />
</head>
<body>
<div class="row align-middle">
<div class="columns">
<div id="weather"></div>
</div>
<div class="columns">
<h1 id="time" datetime=""></h1>
</div>
</div>
<div class="row">
<div class="small-12 columns">
<div id="forecast">Upcoming weather... loading...</div>
</div>
</div>
<div class="row">
<div class="small-12 columns">
<div class="expanded large button-group">
<button id="bedside" class="button alert"><i class="mdi mdi-lightbulb" aria-hidden="true"></i> <i class="mdi mdi-hotel"></i> Bedside</button>
<button id="bedroom" class="button alert"><i class="mdi mdi-lightbulb" aria-hidden="true"></i> <i class="mdi mdi-hotel"></i> Main Light</button>
<button id="house" class="button alert"><i class="mdi mdi-lightbulb" aria-hidden="true"></i> <i class="mdi mdi-home-variant"></i> House Off</button>
</div>
</div>
</div>
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.17.1/moment.min.js"></script>
<script src="js/date.format.js"></script>
<script src="js/config.js"></script>
<script src="js/pi.js"></script>
</body>
</html>