forked from juliocesar/buildmobile-example
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
143 lines (143 loc) · 4.5 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=no;"/>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="red" />
<title>Right Near Me</title>
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=PT+Sans+Narrow:400,700">
<link rel="stylesheet" href="/css/all.css" media="all">
</head>
<body>
<section id="not-found">
<h1>Whoops!</h1>
<p>The page you're looking for cannot be found. Sorry!</p>
</section>
<section id="home">
<h1 id="logo">Right Near Me</h1>
<div id="start-here" class="tooltip important">
<span class="icon">!</span>
<p>
Preferences not set! Head there first.
<a data-href="/settings" class="button">Go to settings</a>
</p>
</div>
<menu>
<li>
<a data-href="/settings">Settings</a>
</li>
<li>
<a data-href="/about">About</a>
</li>
</menu>
<ul id="now-showing">
<li>
<a data-href="/shops/1">Bob's Cafe</a>
</li>
<li>
<a data-href="/shops/2">Joe Surfboards</a>
</li>
<li>
<a data-href="/shops/3">Natura Health Supplements</a>
</li>
<li>
<a data-href="/shops/4">Buckshot Guns & Ammo</a>
</li>
<li>
<a data-href="/shops/5">Walter's Blue Ice</a>
</li>
<li>
<a data-href="/shops/6">Jesse's Blue Ice</a>
</li>
</ul>
</section>
<section id="settings">
<header>
<button data-href="/" role="back"></button>
<h1>Settings</h1>
</header>
<form action="#">
<label for="keywords">Keywords</label>
<input type="text" name="keywords" id="keywords" placeholder="E.g.: surf coffee music" autocapitalize="off">
</form>
<p>
<strong>NOTE: Just submit the form and the keywords will save!</strong>
</p>
<p>
Keywords will narrow down the list of stores near you based on relevance/association with
the keywords you specify.
</p>
<p>
Think of this as a search criteria that sticks around.
</p>
</section>
<section id="about">
<header>
<button data-href="/" role="back"></button>
<h1>About</h1>
</header>
<h2>About</h2>
<p>
This example is taken from an app I've been working on called Right Near Me.
</p>
<p>
Feel free to use the code as boilerplate for your own mobile web app. But I'd
appreciate it if you avoid lifting the design wholesale!
</p>
</section>
<section id="shop-1" class="coffee">
<header>
<button data-href="/" role="back"></button>
<h1>Bob's Cafe</h1>
</header>
<h1>♨ Welcome to Bob's Cafe</h1>
<p>Cheap coffee and snacks!</p>
<p>We're located in Sydney, Australia, at the CBD area, known for it's shitty coffee.</p>
</section>
<section id="shop-2" class="black">
<header>
<button data-href="/" role="back"></button>
<h1>Joe Surfboards</h1>
</header>
<h1>Joe Surfboards</h1>
<p>Lorem Ipsum rubbishum!</p>
</section>
<section id="shop-3" class="nature">
<header>
<button data-href="/" role="back"></button>
<h1>Natura Health Supplements</h1>
</header>
<h1>Natura Health Supplements</h1>
<p>Lorem Ipsum rubbishum!</p>
</section>
<section id="shop-4" class="coffee">
<header>
<button data-href="/" role="back"></button>
<h1>Buckshot Guns</h1>
</header>
<h1>Buckshot Guns</h1>
<p>Lorem Ipsum rubbishum!</p>
</section>
<section id="shop-5" class="ice">
<header>
<button data-href="/" role="back"></button>
<h1>Walter's Blue Ice</h1>
</header>
<h1>Walter's Blue Ice</h1>
<p>Lorem Ipsum Rubbishum.</p>
</section>
<section id="shop-6" class="ice">
<header>
<button data-href="/" role="back"></button>
<h1>Jesse's Blue Ice</h1>
</header>
<h1>Jesse's Blue Ice</h1>
<p>Lorem Ipsum Rubbishum.</p>
</section>
<script src="/js/jquery-1.6.4.min.js"></script>
<script src="/js/underscore.js"></script>
<script src="/js/backbone.js"></script>
<script src="/js/app.js"></script>
</body>
</html>