-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
94 lines (66 loc) · 2.49 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>jQuery Mobile Demos</title>
<!-- Core JQM CSS Files -->
<link rel="stylesheet" href="css/themes/default/jquery.mobile-1.4.0-alpha.2.min.css">
<link rel="shortcut icon" href="favicon.ico">
<!-- Core JQM JS Files -->
<script src="js/jquery.js"></script>
<script src="_assets/js/index.js"></script>
<script src="js/jquery.mobile-1.4.0-alpha.2.min.js"></script>
<!-- Vendor JS Addons -->
<!-- JQM CSS Custom Theme & Overrides Files -->
<link rel="stylesheet" href="assets/css/jqm-custom.css">
</head>
<body>
<!-- Start of first page -->
<div data-role="page" id="page1">
<div data-role="header">
<h1>Foo</h1>
</div>
<div data-role="content">
<p>brandon</p>
<p>Roll content into me I rock</p>
<p>I'm first in the source order so I'm shown as the page.</p>
<p>View internal page called <a href="#bar">bar</a></p>
</div>
<div data-role="footer">
<h4>Page Footer</h4>
</div>
</div>
<!-- End of first page -->
<!-- Start of 2 page -->
<div data-role="page" id="page2">
<div data-role="header">
<h1>Foo</h1>
</div>
<div data-role="content">
<p>I'm first in the source order so I'm shown as the page.</p>
<p>View internal page called <a href="#bar">bar</a></p>
</div>
<div data-role="footer">
<h4>Page Footer</h4>
</div>
</div>
<!-- End of 2 page -->
<!-- Start of 3 page -->
<div data-role="page" id="page3">
<div data-role="header">
<h1>Foo</h1>
</div>
<div data-role="content">
<p>brandon</p>
<p>Roll content into me I rock</p>
<p>I'm first in the source order so I'm shown as the page.</p>
<p>View internal page called <a href="#bar">bar</a></p>
</div>
<div data-role="footer">
<h4>Page Footer</h4>
</div>
</div>
<!-- End of first page -->
</body>
</html>