-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathabout.html
46 lines (43 loc) · 2.33 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8"/>
<meta id="viewport" name="viewport" content="width=320; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
<title>Is This Bike Stolen?</title>
<link rel="stylesheet" href="iphone/stylesheets/iphone.css" />
<link rel="apple-touch-icon" href="iphone/images/apple-touch-icon.png" />
<link href="css/bike.css" type="text/css" rel="stylesheet" media="screen, print, handheld">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js" type="text/javascript" language="javascript"></script>
<script src="js/bike.js" type="text/javascript" language="javascript"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-20088605-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div id="header">
<h1>Is This Bike Stolen?</h1>
</div>
<div id="container">
<p>This tool was originally created by a keen team of developers at the Random Hacks of Kindness / Open Data Hackathon on December 5-6 2010 in Toronto. </p>
<br/>
<p>In no particular order:<br/>
Jon Pipitone <a href="mailto:jon.pipitone@utoronto.ca">jon.pipitone@utoronto.ca</a><br/>
Ben Shymkin <a href="mailto:ben@t.apio.ca">ben@t.apio.ca</a><br/>
Amber Ellis <a href="mailto:amber.ellis27@gmail.com">amber.ellis27@gmail.com</a><br/>
John Taranu <a href="mailto:john.taranu@gmail.com">john.taranu@gmail.com</a><br/>
Stu Basden <a href="mailto:stu@t.apio.ca">stu@t.apio.ca</a><br/>
Jason Montojo <a href="mailto:jrrmzz@gmail.com">jrrmzz@gmail.com</a><br/>
</p>
<br/>
<strong>Standard Disclaimer</strong>
<p>No warranty, either express or implied, is made with respect to the information contained herein. We are not responsible for any loss, inconvenience, damage (whether special or consequential) or claims arising out of the use of the information contained on this site. </p>
</div>
</body>
</html>