forked from zuixjs/zuix-web-flix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (66 loc) · 3.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>WebFlix</title>
<meta name="description" content="HTML Progressive Web App made with zUIx.js">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<!-- Disable tap highlight on IE -->
<meta name="msapplication-tap-highlight" content="no">
<!-- Progressive Web App -->
<meta name="theme-color" content="#121212">
<link rel="manifest" href="manifest.json">
<!-- Add to homescreen for Chrome on Android -->
<meta name="mobile-web-app-capable" content="yes">
<link rel="icon" sizes="192x192" href="images/icons/desktop/android-chrome-192x192.png">
<link rel="icon" sizes="512x512" href="images/icons/desktop/android-chrome-512x512.png">
<!-- Add to homescreen for Safari on iOS -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="A zUIx website">
<link rel="apple-touch-icon-precomposed" href="images/icons/desktop/apple-touch-icon.png">
<link rel="mask-icon" href="images/icons/desktop/safari-pinned-tab.svg" color="#5bbad5">
<!-- Tile color for Windows -->
<meta name="msapplication-TileImage" content="images/icons/desktop/mstile-150x150.png">
<meta name="msapplication-TileColor" content="#ffc40d">
<!-- Place favicon.ico in the root directory -->
<link rel="icon" type="image/png" sizes="32x32" href="images/icons/desktop/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/icons/desktop/favicon-16x16.png">
<!-- SEO: If your mobile URL is different from the desktop URL, add a canonical link to the desktop page https://developers.google.com/webmasters/smartphone-sites/feature-phones -->
<!--
<link rel="canonical" href="http://www.example.com/">
-->
<!-- Material Design Icons -->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<!-- import zUIx library (v 0.4.9-54) -->
<script src="js/zuix.min.js"></script>
<script src="app.bundle.js"></script>
<!-- main app script -->
<script src="index.js" defer></script>
</head>
<!-- load the 'scroll_helper' controller on the body -->
<body data-ui-load="@lib/controllers/scroll_helper" data-ui-options="options.pageScroll" data-ui-lazyload="scroll">
<!-- The header with title/logo -->
<header data-ui-include="layout/header"
data-ui-field="header-bar"></header>
<main data-ui-field="pages">
<!-- HOME -->
<section data-ui-load="pages/home"
data-ui-options="options.mainPage"></section>
<!-- SEARCH -->
<section data-ui-include="pages/search"></section>
<!-- NOTIFICATIONS -->
<section data-ui-include="pages/notifications"></section>
<!-- ABOUT -->
<section data-ui-include="pages/about" layout="column top-center"></section>
</main>
<!-- The footer with toolbar buttons -->
<footer data-ui-include="layout/footer"
data-ui-options="options.footerBar"
data-ui-field="footer-bar"></footer>
<noscript>
Turn on JavaScript to access this site content.
</noscript>
</body>
</html>