forked from phonegap/phonegap-start
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
37 lines (27 loc) · 988 Bytes
/
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
<!DOCTYPE HTML>
<html>
<head>
<title>Polonious</title>
<meta name="viewport" content="width=device-width,initial-scale=1"/>
<link rel="stylesheet" href="assets/css/jquery.mobile-1.0.min.css" />
<link rel="stylesheet" href="assets/css/styles.css" />
</head>
<body>
<div id="menuListPage" data-role="page" >
<div data-role="header" data-position="fixed">
<h1>Polonious</h1>
</div>
<div data-role="content">
<ul id="menuList" data-role="listview" data-filter="true"></ul>
<a href="signup.html" data-role="button"><h4>Sign up</h4></a>
</div>
</div>
<script src="assets/js/phonegap/phonegap-1.3.0.js"></script>
<script src="assets/js/jquery/jquery-1.6.4.min.js"></script>
<script src="assets/js/jquery/jquery.mobile-1.0.min.js"></script>
<script src="assets/js/menu.js"></script>
<script src="assets/js/posts.js"></script>
<script src="assets/js/post.js"></script>
<script src="assets/js/signup.js"></script>
</body>
</html>