-
Notifications
You must be signed in to change notification settings - Fork 812
/
Copy pathindex.html
97 lines (91 loc) · 2.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="google-site-verification"
content="nG3sJH9BDF5kFOQrsvNkx_xbWVEO_wqNiE5dirqo3Yk"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=2"
/>
<meta name="mobile-web-app-capable" content="yes" />
<meta name="theme-color" content="#384c54" />
<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="angularspree" />
<meta name="msapplication-TileColor" content="#384c54" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="website" />
<base href="/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#FF3867" />
<link rel="manifest" href="/manifest.json" />
<link rel="icon" type="image/x-icon" href="fevicon.ico" />
</head>
<body>
<app-root>
<div
style="
vertical-align: middle;
text-align: center;
color: #129DD8;
border-style: none;
margin: 0;
position: absolute;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%);"
>
<img
height="100"
width="100"
src="/assets/default/loader.svg"
alt="Aviabird Technology"
/>
</div>
</app-root>
<script nonce="2726c7f26c">
if ('serviceWorker' in navigator) {
navigator.serviceWorker
.register('/service-worker.js')
.then(function(registration) {
console.log('Service Worker registered');
})
.catch(function(err) {
console.log('Service Worker registration failed: ', err);
});
}
</script>
<!-- To enable search engine to render the app first then parse -->
<script
nonce="2726c7f26c"
src="https://cdnjs.cloudflare.com/ajax/libs/core-js/2.4.1/shim.min.js"
></script>
<script>
WebFontConfig = {
google: {
families: ['Catamaran:300,400,700'],
text: 'abcdefghijklmnopqrstuvwxyz!'
},
google: {
families: ['Lato:300,400,700']
}
};
(function(d) {
var wf = d.createElement('script'),
s = d.scripts[0];
wf.src =
'https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js';
wf.async = true;
s.parentNode.insertBefore(wf, s);
})(document);
</script>
<noscript
>Please enable JavaScript to continue using this application.</noscript
>
</body>
</html>