-
Notifications
You must be signed in to change notification settings - Fork 3
/
result.html.template
39 lines (34 loc) · 1.41 KB
/
result.html.template
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
<!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" media="handheld"/>
<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">
<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">
<!-- $CONTENT -->
<p>If you come across a bike that is reported as stolen, <strong>do not buy the
bike!</strong> Tell the seller you're not interested in buying a stolen bike.
<a href="../info.html#reportstolen">See here for how to report the stolen bike
to the police.</a>
</p>
</div>
</body>
</html>