-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (41 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Humans and I</title>
<meta charset="utf-8">
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Canonical URL -->
<link rel="canonical" href="https://www.humansandi.com" />
<!-- Google Verification -->
<meta name="google-site-verification" content="ygB_UICblgr8JSHDGyi-CiYuC2LI8YOzagVMth8pi5U" />
<!-- Favicon, manifest, and theme colors declarations -->
<link href="favicon.ico" rel="shortcut icon" type="image/x-icon">
<link rel="manifest" href="manifest.json">
<meta name="theme-color" content="#5C4E9B">
<!-- Styling imports -->
<link rel="stylesheet" type="text/css" href="styles/tachyons.min.css">
<link rel="stylesheet" type="text/css" href="dist/bundle.css">
<!-- Facebook OG props -->
<meta property="og:image" content="https://humansandi.com/dist/eadc89750772354590f2ef03ece98ba9.jpg" />
<meta property="og:description" content="Humans and I" />
<meta property="og:url" content="https://humansandi.com/" />
<meta property="og:title" content="Humans and I" />
</head>
<body>
<div class="vh-100 dt w-100 tc bg-dark-gray white cover background"></div>
<script src="dist/app.bundle.js"></script>
<script src="src/lib/ga.js"></script>
<script>
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('service-worker.js').then(function (registration) {
// Registration was successful
console.log('ServiceWorker registration successful with scope: ', registration.scope);
}).catch(function (err) {
// registration failed :(
console.log('ServiceWorker registration failed: ', err);
});
}
</script>
</body>
</html>