forked from senchalearn/seattlebars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (51 loc) · 2.16 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
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>City Guide</title>
<!-- EITHER use the script below if you do not have the Sencha Touch SDK installed locally -->
<script src="http://dev.sencha.com/deploy/touch/sencha-touch-debug.js" type="text/javascript"></script>
<!-- OR use the script below if you do have the Sencha Touch SDK installed locally -->
<!--
<script src="lib/touch/sencha-touch.js" type="text/javascript"></script>
-->
<!-- EITHER use the link below if you do not have the Sencha Touch SDK installed locally -->
<!--
<link id="style" href="http://dev.sencha.com/deploy/touch/resources/css/sencha-touch.css" rel="stylesheet" type="text/css" />
-->
<!-- OR use the link below if you do have the Sencha Touch SDK installed locally -->
<!--
<link id="style" href="lib/touch/resources/css/sencha-touch.css" rel="stylesheet" type="text/css" />
-->
<!-- OR use the link below for a custom theme -->
<link id="style" href="theming/seattlebars.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script>
<script type="text/javascript">
// Change to your own keys please!
YELP_KEY = 'G3HueY_I5a8WZX-_bFo3Mw';
MONGOLAB_KEY = '4d9d06b08d634c5e2d303292';
DEFAULT_CITY = 'Seattle';
BUSINESS_TYPE = 'Bars';
</script>
<script type="text/javascript" src="app/app.js"></script>
<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>