-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
57 lines (50 loc) · 2.46 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
<!DOCTYPE html>
<html manifest="manifest.appcache">
<head>
<meta charset="utf-8">
<title>UR Bus Schedules</title>
<link rel="icon" type="image/png" href="favicon.png" />
<link rel="stylesheet" type="text/css" href="style.css" />
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1, user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<link rel="apple-touch-icon" href="apple-touch-icon.png" />
<meta property="og:title" content="RocBuses" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://rochack.org/rocbuses/" />
<meta property="og:image" content="http://rochack.org/rocbuses/ur-bus.png" />
<meta property="og:site_name" content="RocHack" />
<meta property="fb:admins" content="1361520039" />
<meta property="og:description" content="UR Shuttle Bus Schedules" />
</head>
<body>
<div class="container">
<h1>UR bus schedules</h1>
<div id="lines">
<h2>Select a line:</h2>
<a class="line_box line_red" href="#red"></a>
<a class="line_box line_green" href="#green"></a>
<a class="line_box line_orange" href="#orange"></a>
<a class="line_box line_blue" href="#blue"></a>
<a class="line_box line_silver" href="#silver"></a>
<a class="line_box line_gold" href="#gold"></a>
<a class="line_box line_purple" href="#purple"></a>
</div>
<h2>Schedule</h2>
<div id="schedules"></div>
<p><a href="" id="toggle-show-all-days">Show all days</a></p>
<p><a href="mailto:[email protected]?Subject=Bus%20Feedback">Send us feedback</a></p>
<!--<p><a href="special/">Spring Break schedules</a></p>-->
</div>
<script type="text/javascript" src="script.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-35584323-2']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = 'https://ssl.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>