-
Notifications
You must be signed in to change notification settings - Fork 0
/
city.html
28 lines (28 loc) · 1.01 KB
/
city.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>AC POI | Points of Interest</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<link rel="stylesheet" href="css/main.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<script src="http://maps.googleapis.com/maps/api/js?libraries=places&sensor=false"></script>
<script src="js/main.js"></script>
<script src="js/city.js"></script>
<script src="js/poi.js"></script>
</head>
<body>
<div id="city-page" data-role="page">
<div data-role="header">
<a href="index.html" data-icon="back">Back</a>
<h1 id="city-name"></h1>
</div>
<div data-role="content">
<ul id="poi-list" data-role="listview">
</ul>
</div>
</div>
</body>
</html>