-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
52 lines (49 loc) · 1.67 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
<!doctype html>
<html manifest="cache.manifest">
<head>
<title>RTD LightRail Schedule</title>
<meta name="viewport" content="width=320.1; initial-scale=1.0; maximum-scale=1.0; user-scalable=0; minimal-ui;" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta http-equiv="cache-control" content="max-age=10, must-revalidate" />
<link rel="apple-touch-icon" href="rtd.png" />
<link rel="stylesheet" href="main.css" type="text/css" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="tempo.min.js"></script>
<script type="text/javascript" src="main.js"></script>
</head>
<body>
<header>
<hgroup>
<h1>D line</h1>
<h2 id="south" class="south">Southbound</h2>
<h2 id="north" class="north">Northbound</h2>
</hgroup>
<table>
<tr class="south">
<th>20th & Welton</th>
<th>16th & Stout</th>
<th>Oxford</th>
</tr>
<tr class="north">
<th>Oxford</th>
<th>16th & Cali</th>
<th>18th & Cali</th>
</tr>
</table>
</header>
<table id="southbound" class="south">
<tr data-template>
<td>{{ twentywelton | date 'HH:mm' }}</td>
<td>{{ sixstout | date 'HH:mm' }}</td>
<td>{{ oxford | date 'HH:mm' }}</td>
</tr>
</table>
<table id="northbound" class="north">
<tr data-template>
<td>{{ oxford | date 'HH:mm' }}</td>
<td>{{ sixcali | date 'HH:mm' }}</td>
<td>{{ eightcali | date 'HH:mm' }}</td>
</tr>
</table>
</body>
</html>