-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (49 loc) · 2.22 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link rel="icon" href="./favicon.ico">
<link rel="apple-touch-icon" sizes="128x128" href="./img/icon.png">
<meta name="viewport"
content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no, viewport-fit=cover">
<meta http-equiv="Content-Security-Policy"
content="default-src * data: gap: https://ssl.gstatic.com; style-src * 'unsafe-inline'; script-src * 'unsafe-inline' 'unsafe-eval'">
<title>onsen-ui template</title>
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"> -->
<!-- <link rel="stylesheet" href="components/loader.css"> -->
<!-- <link rel="stylesheet" href="lib/onsenui/css/onsenui.css">
<link rel="stylesheet" href="lib/onsenui/css/onsen-css-components.css"> -->
<link rel='stylesheet' href='https://unpkg.com/onsenui/css/onsenui.css'>
<link rel='stylesheet' href='https://unpkg.com/onsenui/css/onsen-css-components.css'>
<link rel="stylesheet" href="css/style.css">
<script src='https://cdnjs.cloudflare.com/ajax/libs/fastclick/1.0.6/fastclick.min.js'></script>
<script src="js/bundle/fastclick.js"></script>
<!-- <script src="components/loader.js"></script>
<!-- <script src="lib/onsenui/js/onsenui.min.js"></script> -->
<script src='https://unpkg.com/onsenui/js/onsenui.js'></script>
</head>
<body>
<ons-navigator swipeable id="Navigator" page="index.html">
<ons-page>
<ons-splitter id="Splitter">
<ons-splitter-content page="tabbar.html"></ons-splitter-content>
</ons-splitter>
</ons-page>
</ons-navigator>
<template id="tab.html">
<ons-page id="tabbar">
<ons-tabbar position="bottom">
<ons-tab page="index.html" icon="ion" active>
</ons-tab>
</ons-tabbar>
</ons-page>
</template>
<template id="index.html">
<ons-page id="Index">
</ons-page>
</template>
<script src="js/main.js"></script>
</body>
</html>