-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (63 loc) · 3.03 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
<!DOCTYPE html>
<html lang="en" class="ui-mobile">
<head>
<meta charset="utf-8">
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
Remove this if you use the .htaccess -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Home</title>
<meta name="description" content="">
<meta name="author" content="sabuqurs">
<meta name="viewport" content="width=device-width; initial-scale=1.0">
<!-- Replace favicon.ico & apple-touch-icon.png in the root of your domain and delete these references -->
<link rel="shortcut icon" href="/favicon.ico">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<!-- Style sheets -->
<link rel="stylesheet" href="css/jquery.mobile-1.3.2.css" type="text/css" />
<link rel="stylesheet" href="css/jquery.mobile.structure-1.3.2.css" type="text/css" />
<link rel="stylesheet" href="css/custom-style.css" type="text/css" />
<!-- Scripts -->
<script src="js/cordova.js" type="text/javascript"></script>
<script src="js/jquery-2.0.3.js" type="text/javascript"></script>
<script src="js/jquery.mobile-1.3.2.js" type="text/javascript"></script>
<script src="js/custom-script.js" type="text/javascript"></script>
</head>
<body>
<section id="home-page" data-role="page" class="ui-page ui-body-c ui-page-active">
<div data-role="header" class="ui-header ui-bar-a" role="banner">
<h1 class="ui-title" role="heading" aria-level="1">Home page</h1>
</div>
<div data-role="content" class="ui-content" role="main">
<a href="#data-page" data-transition="flip">Go to data-page</a><br />
<a href="#info-page" data-transition="flip">Go to info-page</a>
</div>
<div data-role="footer" class="ui-footer ui-bar-a" role="contentinfo">
<h4 class="ui-title" role="heading" aria-level="1">Footer content</h4>
</div>
</section>
<section id="data-page" data-role="page" class="ui-page ui-body-a">
<div data-role="header" class="ui-header ui-bar-a" role="banner">
<h1 class="ui-title" role="heading" aria-level="1">Data page</h1>
</div>
<div data-role="content" class="ui-content" role="main">
<a href="#home-page" data-transition="flip">Go to home-page</a><br />
<a href="#info-page" data-transition="flip">Go to info-page</a>
</div>
<div data-role="footer" class="ui-footer ui-bar-a" role="contentinfo">
<h4 class="ui-title" role="heading" aria-level="1">Footer content</h4>
</div>
</section>
<section id="info-page" data-role="page" class="ui-page ui-body-b">
<div data-role="header" class="ui-header ui-bar-a" role="banner">
<h1 class="ui-title" role="heading" aria-level="1">Info page</h1>
</div>
<div data-role="content" class="ui-content" role="main">
<a href="#home-page" data-transition="flip">Go to home-page</a><br />
<a href="#data-page" data-transition="flip">Go to data-page</a>
</div>
<div data-role="footer" class="ui-footer ui-bar-a" role="contentinfo">
<h4 class="ui-title" role="heading" aria-level="1">Footer content</h4>
</div>
</section>
</body>
</html>