This repository has been archived by the owner on Jan 30, 2020. It is now read-only.
forked from liyasthomas/fuse-org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
232 lines (206 loc) · 7.92 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
<!--
@license
Made by: Liyas Thomas
Copyright (c) 2017 Liyas Thomas (https://liyas-thomas.firebaseapp.com)
ALL RIGHTS RESERVED. ALL WRONGS RESERVED.
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
-->
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="generator" content="Polymer Starter Kit">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no">
<title>Fuse Org</title>
<meta name="description" content="Developers Community">
<!--
The `<base>` tag below is present to support two advanced deployment options:
1) Differential serving. 2) Serving from a non-root path.
Instead of manually editing the `<base>` tag yourself, you should generally either:
a) Add a `basePath` property to the build configuration in your `polymer.json`.
b) Use the `--base-path` command-line option for `polymer build`.
Note: If you intend to serve from a non-root path, see [polymer-root-path] below.
-->
<base href="/">
<link rel="icon" href="images/manifest/icon-192x192.png">
<!-- See https://goo.gl/OOhYW5 -->
<link rel="manifest" href="/manifest.json">
<!-- See https://goo.gl/qRE0vM -->
<meta name="theme-color" content="#fff">
<!-- Add to homescreen for Chrome on Android. Fallback for manifest.json -->
<meta name="mobile-web-app-capable" content="yes">
<meta name="application-name" content="Fuse Org">
<!-- 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-translucent">
<meta name="apple-mobile-web-app-title" content="Fuse Org">
<!-- Homescreen icons -->
<link rel="apple-touch-icon" href="images/manifest/icon-48x48.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/manifest/icon-72x72.png">
<link rel="apple-touch-icon" sizes="96x96" href="images/manifest/icon-96x96.png">
<link rel="apple-touch-icon" sizes="144x144" href="images/manifest/icon-144x144.png">
<link rel="apple-touch-icon" sizes="192x192" href="images/manifest/icon-192x192.png">
<!-- Tile icon for Windows 8 (144x144 + tile color) -->
<meta name="msapplication-TileImage" content="images/manifest/icon-144x144.png">
<meta name="msapplication-TileColor" content="#fff">
<meta name="msapplication-tap-highlight" content="no">
<!-- OpenGraph -->
<meta property="og:site_name" content="Fuse Org">
<meta property="og:url" content="https://fuse-org.firebaseapp.com">
<meta property="og:type" content="website">
<meta property="og:title" content="Fuse Org">
<meta property="og:description" content="Developers Community">
<meta property="og:image" content="/images/manifest/icon-144x144.png">
<!-- Twitter -->
<meta name="twitter:site" content="@liyasthomas">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Fuse Org">
<meta name="twitter:description" content="Developers Community">
<meta name="twitter:image" content="/images/manifest/icon-144x144.png">
<meta name="twitter:url" content="https://fuse-org.firebaseapp.com">
<!-- Web Fonts -->
<link href='https://fonts.googleapis.com/css?family=Product+Sans' rel='stylesheet'>
<script>
/**
* [polymer-root-path]
*
* By default, we set `Polymer.rootPath` to the server root path (`/`).
* Leave this line unchanged if you intend to serve your app from the root
* path (e.g., with URLs like `my.domain/` and `my.domain/view1`).
*
* If you intend to serve your app from a non-root path (e.g., with URLs
* like `my.domain/my-app/` and `my.domain/my-app/view1`), edit this line
* to indicate the path from which you'll be serving, including leading
* and trailing slashes (e.g., `/my-app/`).
*/
window.Polymer = {rootPath: '/'};
// Load and register pre-caching Service Worker
if ('serviceWorker' in navigator) {
window.addEventListener('load', function() {
navigator.serviceWorker.register('service-worker.js', {
scope: Polymer.rootPath,
});
});
}
</script>
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', function () {
navigator.serviceWorker.register('service-worker.js').then(function (registration) {
var app = document.querySelector('#app');
if (registration.waiting) {
app.update(registration);
return;
}
if (registration.installing) {
registration.installing.addEventListener('statechange', function () {
app.update(registration);
});
return;
}
registration.addEventListener('updatefound', function () {
app.update(registration);
});
console.info('ServiceWorker registration successful with scope: ', registration.scope);
}, function (err) {
console.info('ServiceWorker registration failed: ', err);
});;
});
}
</script>
<!-- Load webcomponents-loader.js to check and load any polyfills your browser needs -->
<script src="bower_components/webcomponentsjs/webcomponents-loader.js"></script>
<!-- Load your application shell -->
<link rel="import" href="src/my-app.html">
<!-- Add any global styles for body, document, etc. -->
<style>
body {
margin: 0;
}
a {
text-decoration: none;
outline: none;
color: inherit;
}
body {
margin: 0;
padding: 0;
min-height: 100vh;
font-family: 'Roboto', 'Noto', sans-serif;
font-size: 16px;
line-height: 1.5;
color: #212121;
background-color: #fff;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
font-smoothing: antialiased;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}
#preloader {
height: 100%;
width: 100%;
z-index: 1000;
background: #fff;
position: fixed;
display: flex;
text-align: center;
flex-direction: column;
align-items: center;
justify-content: center;
}
.loader {
color: #2979ff;
font-family: Consolas, Menlo, Monaco, monospace;
font-weight: bold;
font-size: 20vh;
}
.loader span {
display: inline-block;
animation: pulse 0.4s alternate infinite ease-in-out;
}
.loader span:nth-child(odd) {
animation-delay: 0.4s;
}
@keyframes pulse {
to {
transform: scale(0.8);
opacity: 0.5;
}
}
</style>
</head>
<body>
<my-app id="app">
<div id="preloader">
<div class="loader">
<span>{</span><span>}</span>
</div>
</div>
</my-app>
<noscript>
Please enable JavaScript to view this website.
</noscript>
<!-- Built with love using Polymer -->
</body>
</html>