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 pathindex.html
More file actions
43 lines (32 loc) · 1.31 KB
/
index.html
File metadata and controls
43 lines (32 loc) · 1.31 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</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-index" data-theme="a" id="main_screen">
<div data-role="header" data-theme="a">
<h1>My Web App</h1>
</div>
<div data-role="content">
<ul data-role="listview" data-inset="true" data-theme="a" data-dividertheme="a">
<li data-icon="plus"><a href="new_person.html">New Person</a></li>
<li><a href="saved_people.html">Saved People</a></li>
</ul>
</div>
</div>
</body>
</html>