-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
75 lines (73 loc) · 2.45 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
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="application-name" content="Pi BTC Weather Clock"/>
<meta name="description" content="Pi BTC Weather Clock"/>
<title>Pi BTC Weather Clock</title>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/weather-icons.css" />
</head>
<body>
<div id="shell">
<table id="display">
<tbody>
<tr>
<td id="current" colspan="2">
<div class="icon"></div>
<div class="desc"></div>
<div class="currentTemp">Temperature:<br /><span class="temp"></span></div>
</td>
<td colspan="3">
<div id="time"></div>
<div id="date"></div>
<div id='btcprice'></div>
</td>
</tr>
<tr>
<td class="forecast" id="forecast1">
<div class="day"></div>
<div class="icon"></div>
<div class="desc"></div>
<div class="highTemp">High: <span class="high"></span></div>
<div class="lowTemp">Low: <span class="low"></span></div>
</td>
<td class="forecast" id="forecast2">
<div class="day"></div>
<div class="icon"></div>
<div class="desc"></div>
<div class="highTemp">High: <span class="high"></span></div>
<div class="lowTemp">Low: <span class="low"></span></div>
</td>
<td class="forecast" id="forecast3">
<div class="day"></div>
<div class="icon"></div>
<div class="desc"></div>
<div class="highTemp">High: <span class="high"></span></div>
<div class="lowTemp">Low: <span class="low"></span></div>
</td>
<td class="forecast" id="forecast4">
<div class="day"></div>
<div class="icon"></div>
<div class="desc"></div>
<div class="highTemp">High: <span class="high"></span></div>
<div class="lowTemp">Low: <span class="low"></span></div>
</td>
<td class="forecast" id="forecast5">
<div class="day"></div>
<div class="icon"></div>
<div class="desc"></div>
<div class="highTemp">High: <span class="high"></span></div>
<div class="lowTemp">Low: <span class="low"></span></div>
</td>
</tr>
</tbody>
</table>
</div>
<script src="libs/jquery.min.js"></script>
<script src="libs/moment-with-locales.min.js"></script>
<script src="js/icons.js"></script>
<script src="js/app.js"></script>
</body>
</html>