-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspots.html
More file actions
151 lines (146 loc) · 5.69 KB
/
spots.html
File metadata and controls
151 lines (146 loc) · 5.69 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!doctype html>
<!--[if IEMobile 7 ]><html class="no-js iem7"><![endif]-->
<!--[if (gt IEMobile 7)|!(IEMobile)]><!--> <html class="no-js"><!--<![endif]-->
<head>
<title>StarTrackr</title>
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<!-- For iPad -->
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://papercraft.local:9110/apple-touch-icon-72x72-precomposed.png">
<!-- For iPhone 4 with high-resolution Retina display -->
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://papercraft.local:9110/apple-touch-icon-114x114-precomposed.png">
<!-- For iOS 1- and Blackberry 6 -->
<link rel="apple-touch-icon" href="http://papercraft.local:9110/apple-touch-icon.png">
<!-- For pre-retina iPhone, iPod Touch, and Android 2.1+ devices -->
<link rel="apple-touch-icon-precomposed" href="http://papercraft.local:9110/apple-touch-icon-precomposed.png">
<!-- Startup image -->
<link rel="apple-touch-startup-image" href="http://papercraft.local:9110/apple-touch-startup-image.png">
<link type="text/css" rel="stylesheet" href="stylesheets/screen.css" media="screen"/>
<script type="text/javascript" src="javascripts/vendor/modernizr-1.7.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script src="javascripts/vendor/helper.js"></script>
<script src="javascripts/basic.js"></script>
</head>
<body>
<ul id="tab-bar" class="page-spots">
<li id="tab-spots">
<a href="spots.html">
Spots
</a>
</li>
<li id="tab-sighting">
<a href="new.html">
Add a sighting
</a>
</li>
<li id="tab-stars">
<a href="stars.html">
Stars
</a>
</li>
</ul><!-- #tab-bar -->
<div class="page-spots">
<div class="header">
<h1>Spots</h1>
<a href="#" class="back">Back</a>
</div><!-- .header -->
<div class="wrapper">
<div class="scroller">
<form id="spots-location" action="/location/" method="post">
<fieldset>
<label for="address">
<span>Location</span>
<input type="text" placeholder="Enter a location" name="address" id="address"/>
</label>
<a href="#" class="locate-me">Locate me</a>
</fieldset>
<button type="submit">Find</button>
</form><!-- #spot-location -->
<ul id="spots-list" class="table-view table-action">
<li>
<a href="spot.html">
<h2>Planet Hollywood</h2>
<span class="relative-distance">233m away</span>
<span class="sightings">3</span>
</a>
</li>
<li class="even">
<a href="spot.html">
<h2>Myles’ House</h2>
<span class="relative-distance">506m away</span>
<span class="sightings">5</span>
</a>
</li>
<li>
<a href="spot.html">
<h2>Edgar’s Inn</h2>
<span class="relative-distance">1.2km away</span>
<span class="sightings">15</span>
</a>
</li>
<li class="even">
<a href="spot.html">
<h2>Hard Rock Café</h2>
<span class="relative-distance">1.2km away</span>
<span class="sightings">15</span>
</a>
</li>
<li>
<a href="spot.html">
<h2>Planet Hollywood sideshow has a long name</h2>
<span class="relative-distance">233m away</span>
<span class="sightings">3</span>
</a>
</li>
<li class="even">
<a href="spot.html">
<h2>Myles’ House</h2>
<span class="relative-distance">506m away</span>
<span class="sightings">5</span>
</a>
</li>
<li>
<a href="spot.html">
<h2>Edgar’s Inn</h2>
<span class="relative-distance">1.2km away</span>
<span class="sightings">15</span>
</a>
</li>
<li class="even">
<a href="spot.html">
<h2>Hard Rock Café</h2>
<span class="relative-distance">1.2km away</span>
<span class="sightings">15</span>
</a>
</li>
<li>
<a href="spot.html">
<h2>Edgar’s Inn</h2>
<span class="relative-distance">1.2km away</span>
<span class="sightings">15</span>
</a>
</li>
<li class="even">
<a href="spot.html">
<h2>Hard Rock Café</h2>
<span class="relative-distance">1.2km away</span>
<span class="sightings">15</span>
</a>
</li>
</ul><!-- #spots-list -->
<a href="#" id="next-page">
Next page
</a>
<div class="footer">
<span class="site-switch">
Switch to
<a href="#">standard site</a>
</span>
<a href="#" class="authenticate">Log out</a>
</div><!-- .footer -->
</div><!-- .scroller -->
</div><!-- .wrapper -->
</div><!-- .page-spots -->
</body>
</html>