-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
134 lines (119 loc) · 5.05 KB
/
index.html
File metadata and controls
134 lines (119 loc) · 5.05 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- TITILE -->
<title></title>
<!-- BASE -->
<base href="/">
<!-- VIEWPORT -->
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes" />
<!-- THEME COLOR -->
<meta name="theme-color" content="#303030" />
<!-- MANIFEST -->
<link rel="manifest" href="manifest.json" />
<!-- CANONICAL -->
<link rel="canonical" href="" />
<!-- AUTHOR -->
<meta name="author" content="" />
<!-- X-UA -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<!-- TIME -->
<meta http-equiv="If-Modified-Since" content="Fri, 20 Apr 2018 14:30:59 GMT" />
<!-- DESCRIPTION -->
<meta name="description" content="" />
<!-- KEYWORDS -->
<meta name="keywords" content="" />
<!-- HTTPS REFERRER TAG-->
<meta name="referrer" content="origin" />
<!-- Add to homescreen for Chrome on Android -->
<meta name="mobile-web-app-capable" content="yes" />
<meta name="application-name" content="" />
<!-- 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="" />
<!-- Homescreen icons -->
<link rel="apple-touch-icon" href="icon-48x48.png">
<link rel="apple-touch-icon" sizes="72x72" href="icon-72x72.png">
<link rel="apple-touch-icon" sizes="96x96" href="icon-96x96.png">
<link rel="apple-touch-icon" sizes="144x144" href="icon-144x144.png">
<link rel="apple-touch-icon" sizes="192x192" href="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="" />
<meta name="msapplication-tap-highlight" content="no" />
<!--TWITTER -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="" />
<meta name="twitter:description" content="" />
<style>
/*
@font-face {
font-family: 'Pacifico';
font-style: normal;
font-weight: 400;
src: local('Pacifico Regular'), local('Pacifico-Regular'), url(https://fonts.gstatic.com/s/pacifico/v12/Q_Z9mv4hySLTMoMjnk_rCXYhjbSpvc47ee6xR_80Hnw.woff2) format('woff2');
}
*/
body {
margin: 0px;
min-height: 100vh;
font-family: Roboto, sans-serif;
line-height: 1.5;
-webkit-font-smoothing: antialiased;
/* font-weight: 800; */
/* text-shadow: 3px 2px black; */
}
@media print { body { background-color: white; } }
</style>
<!-- JSON -->
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebApplication",
"datePublished": "2018-04-04T11:10:59Z",
"name": "",
"about": "",
"operatingSystem": "",
"applicationCategory": "",
"applicationSubCategory": "",
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.5",
"reviewCount": "5"
},
"offer": "$0.00"
}
</script>
<!-- SERVICE WORKER -->
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator
.serviceWorker
.register('/sw.js')
.then(registration => { console.log(`Service Worker registered! Scope: ${registration.scope}`); })
.catch(error => { console.log(`Service Worker registration failed: ${error}`); });
});
}
</script>
<!-- Redux assumes `process.env.NODE_ENV` exists in the ES module build. https://github.com/reactjs/redux/issues/2907 -->
<script async>
window.process = { env: { NODE_ENV: 'production' } };
</script>
</head>
<body>
<!-- NO SCRIPT -->
<noscript>
Please enable JavaScript to view this website.
</noscript>
<!-- APPLICATION SHELL -->
<application-shell appTitle="website">
<span slot="search"> </span>
<span slot="advert"> </span>
</application-shell>
<script src='node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js'></script>
<script type="module" src='./deploy/application-shell.js'></script>
</body>
</html>