forked from commadelimited/jQuery-Mobile-Boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (44 loc) · 1.6 KB
/
index.html
File metadata and controls
55 lines (44 loc) · 1.6 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
44
45
46
47
48
49
50
51
52
53
54
55
<!--
jQuery Mobile Boilerplate
index.html
-->
<!doctype html>
<html>
<head>
<title> jQuery Mobile Boilerplate </title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- jQuery Mobile CSS bits -->
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.css" />
<!-- if you have a custom theme, add it here -->
<link rel="stylesheet" href="/themes/jQuery-Mobile-Boilerplate.css" />
<!-- Custom css -->
<link rel="stylesheet" href="/css/custom.css" />
<!-- Javascript includes -->
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="/js/mobileinit.js"></script>
<script src="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.js"></script>
<script src="/js/application.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>jQuery Mobile Boilerplate 1.0</h1>
</div>
<div data-role="content">
<ul data-role="listview" data-inset="true" data-theme="c" data-dividertheme="b">
<li data-role="list-divider">Snippet Pages</li>
<li><a href="snippets/buttons.html">Buttons</a></li>
<li><a href="snippets/grids.html">Grids</a></li>
<li><a href="snippets/collapsibles.html">Collapsible Boxes</a></li>
<li><a href="snippets/collapsible-sets.html">Collapsible Sets</a></li>
<li><a href="snippets/forms.html">Form Elements</a></li>
<li><a href="snippets/lists.html">List Views</a></li>
</ul>
</div>
<div data-role="footer" data-theme="c">
<p>© 2012 - jQuery Mobile Boilerplate</p>
</div>
</div>
</body>
</html>