forked from tegansnyder/JQuery-Mobile---HTML5-Web-DB-Example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsaved_people.html
More file actions
43 lines (32 loc) · 1.38 KB
/
Copy pathsaved_people.html
File metadata and controls
43 lines (32 loc) · 1.38 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
<!DOCTYPE html>
<html>
<head>
<title>My Web App - Saved Person</title>
<meta charset="utf-8">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable = no, maximum-scale = 1">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta http-equiv="cleartype" content="on">
<link rel="stylesheet" href="css/jqmtegan.min.css" />
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0rc3/jquery.mobile.structure-1.0rc3.min.css" />
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0rc3/jquery.mobile-1.0rc3.min.js"></script>
<script src="js/html5sql.js"></script>
<script src="js/app.js"></script>
</head>
<body>
<div data-role="page" class="type-interior" data-theme="a" id="saved_people">
<div data-role="header" data-theme="a">
<h1>Saved People</h1>
<a href="index.html" data-icon="home" data-iconpos="notext" data-direction="reverse" class="ui-btn-right jqm-home">Home</a>
</div>
<div data-role="content">
<ul data-role="listview" data-inset="true" data-theme="a" data-divider-theme="a" id="people_list">
<li data-role="list-divider">Saved People</li>
</ul>
</div>
</div>
</body>
</html>