-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcategories.html
86 lines (74 loc) · 3.66 KB
/
categories.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
<!--
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">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<!-- Home screen icon Mathias Bynens mathiasbynens.be/notes/touch-icons -->
<!-- For iPhone 4 with high-resolution Retina display: -->
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="apple-touch-icon.png">
<!-- For first-generation iPad: -->
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="apple-touch-icon.png">
<!-- For non-Retina iPhone, iPod Touch, and Android 2.1+ devices: -->
<link rel="apple-touch-icon-precomposed" href="apple-touch-icon-precomposed.png">
<!-- For nokia devices and desktop browsers : -->
<link rel="shortcut icon" href="favicon.png" />
<!-- Mobile IE allows us to activate ClearType technology for smoothing fonts for easy reading -->
<meta http-equiv="cleartype" content="on">
<!-- jQuery Mobile CSS bits -->
<!-- <link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" />-->
<link rel="stylesheet" href="css/jquery.mobile-1.1.1.css" />
<!-- Custom css -->
<link rel="stylesheet" href="css/custom.css" />
<!-- Javascript includes -->
<!-- <script
src="http://code.jquery.com/jquery-1.7.1.min.js"></script>-->
<script src="js/jquery-1.7.2.js"></script>
<script src="js/mobileinit.js"></script>
<script src="js/ios-orientationchange-fix.min.js"></script>
<!-- <script src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js"></script>-->
<script src="js/jquery.mobile-1.1.1.js"></script>
<!-- app -->
<script src="js/app/app.js"></script>
<script src="js/app/models.js"></script>
<script src="js/app/Config.js"></script>
<script src="js/app/Controller.js"></script>
<script src="js/app/Catalogue.js"></script>
<script src="js/app/list.js"></script>
<script src="js/app/reader.js"></script>
<!-- /app -->
<!-- Add a Bookmark Bubble for iDevices, and adds a cookie if already shown -->
<script type="text/javascript" src="js/bookmark_bubble.js"></script>
<script type="text/javascript" src="js/example.js"></script>
<script src="js/jquery.cookie.js"></script>
<!-- Startup Images for iDevices -->
<script>(function(){var a;if(navigator.platform==="iPad"){a=window.orientation!==90||window.orientation===-90?"images/startup-tablet-landscape.png":"images/startup-tablet-portrait.png"}else{a=window.devicePixelRatio===2?"images/startup-retina.png":"images/startup.png"}document.write('<link rel="apple-touch-startup-image" href="'+a+'"/>')})()</script>
<!-- The script prevents links from opening in mobile safari. https://gist.github.com/1042026 -->
<script>(function(a,b,c){if(c in b&&b[c]){var d,e=a.location,f=/^(a|html)$/i;a.addEventListener("click",function(a){d=a.target;while(!f.test(d.nodeName))d=d.parentNode;"href"in d&&(d.href.indexOf("http")||~d.href.indexOf(e.host))&&(a.preventDefault(),e.href=d.href)},!1)}})(document,window.navigator,"standalone")</script>
</head>
<body>
<!-- Categories -->
<div data-role="page" id="page-categories">
<div data-role="content" style="padding: 15px">
<ul data-role="listview" data-divider-theme="b" data-inset="false" id="list-categories">
<li data-role="list-divider" role="heading">
Divider
</li>
<li data-theme="c">
<a href="#" data-transition="slide">
Button
</a>
</li>
</ul>
</div>
</div>
</body>
</html>