forked from ekantola/infodisplay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (67 loc) · 2.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="refresh" content="1800" /><!--just to be sure...-->
<title>Infodisplay</title>
<link href="http://fonts.googleapis.com/css?family=Nobile:regular,italic,bold,bolditalic" rel="stylesheet" />
<link href="http://fonts.googleapis.com/css?family=Droid+Sans:regular,bold" rel="stylesheet" />
<link href="styles.css" rel="stylesheet" />
</head>
<body>
<div id="wrapper">
<div id="header">
<img id="logo" src="logo.png" alt="Company logo" />
<div id="datetime"><span id="date">DOW nth Month</span> <span id="time">00:00</span></div>
<div id="offices">
<table>
<tr id="weatherHelsinki">
<td class="city">Helsinki</td>
<td class="conditions"><img src="" /></td>
<td class="temp"><span class="value">?</span> °C</td>
</tr>
<tr id="weatherTampere">
<td class="city">Tampere</td>
<td class="conditions"><img src="" /></td>
<td class="temp"><span class="value">?</span> °C</td>
</tr>
<tr id="weatherBerlin">
<td class="city">Berlin</td>
<td class="conditions"><img src="" /></td>
<td class="temp"><span class="value">?</span> °C</td>
</tr>
</table>
<div class="notation">Powered by WeatherBug</div>
</div>
</div>
<div id="buses">
<h1>Buses</h1>
<h2>Short walk <span>(the Pianissimo stop, 300 m)</span></h2>
<table id="stop_1045" class="arrivalDataTable">
<tbody>
</tbody>
</table>
<h2>Long walk <span>(the S-Market stop, 900 m)</span></h2>
<table id="stop_1055" class="arrivalDataTable">
<tbody>
</tbody>
</table>
</div>
<div id="taxi">
<h2><div class="glare"></div>Prefer a taxi?</h2>
<p id="taxi_sms">
Send the following SMS<br />
"<strong id="taxi_address">XXX</strong>"<br />
to <strong id="taxi_smsnumber">XXX</strong> <em id="taxi_or">or</em><br/>
</p>
<p id="taxi_phone">
call <strong id="taxi_phonenumber">XXX</strong>
</p>
</div>
</div>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script src="config.js"></script>
<script src="config.local.js"></script>
<script src="scripts.js"></script>
</html>