-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (47 loc) · 1.69 KB
/
index.html
File metadata and controls
56 lines (47 loc) · 1.69 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
56
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, width=device-width">
<link href="kendo/styles/kendo.mobile.all.min.css" rel="stylesheet">
<link href="styles/overrides.css" rel="stylesheet">
<link href="styles/main.css" rel="stylesheet">
<script src="cordova.js"></script>
<script src="kendo/js/jquery.min.js"></script>
<script src="kendo/js/kendo.mobile.min.js"></script>
<script src="app.js"></script>
</head>
<body id="kendoUiMobileApp">
<script src="components/home/index.js"></script>
<div data-role="layout" data-id="main">
<header data-role="header">
<div data-role="navbar">
<span data-role="view-title"></span>
</div>
</header>
<footer data-role="footer">
<div data-role="tabstrip" id="navigation-container">
<a href="components/home/view.html" data-icon="home">Home View</a>
</div>
<div id="navigation-container-more" style="display: none">
</div>
</footer>
</div>
<div id="navigation-show-more-view" data-role="view" data-title="Show More" data-layout="main">
<ul data-role="listview" data-style="inset" data-click="app.listViewClick">
</ul>
</div>
<div data-role="layout" data-id="main-nonav">
<header data-role="header">
<div data-role="navbar">
<span data-role="view-title"></span>
</div>
</header>
<footer data-role="footer">
</footer>
</div>
<!-- start index html save -->
<!-- end index html save -->
</body>
</html>