forked from senchalearn/citybars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (40 loc) · 1.44 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
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>City Guide</title>
<script src="http://cdn.sencha.io/touch/1.1.0/sencha-touch.js" type="text/javascript"></script>
<script src="http://maps.google.com/maps/api/js?sensor=true" type="text/javascript"></script>
<!--
You must replace this YELP_KEY below with your own, available by registering with Yelp:
http://www.yelp.com/developers/getting_started/api_overview
(in this app, we use the Review Search API v1.0)
-->
<script type="text/javascript">
YELP_KEY = 'G3HueY_I5a8WZX-_bFo3Mw';
DEFAULT_CITY = 'New York';
BUSINESS_TYPE = 'Bars';
</script>
<script type="text/javascript" src="app/app.js"></script>
<link href="theming/citybars.css" rel="stylesheet" type="text/css" />
<style>
.photo {
float:left;
margin:0 8px 16px 0;
border:1px solid #ccc;
-webkit-box-shadow: 0 2px 4px #777;
}
.x-html h2 {
margin-bottom:0;
}
.phone, .link {
clear:both;
font-weight:bold;
display:block;
text-align:center;
margin-top:8px;
}
</style>
</head>
<body></body>
</html>