-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (53 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Home | Array of Sunshine</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
property="og:image"
content="/images-icons/markdown-blog-screenshot.png"
/>
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary_large_image" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="/images-icons/favicon/favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/images-icons/favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/images-icons/favicon/favicon-16x16.png"
/>
<link rel="manifest" href="/images-icons/favicon/site.webmanifest" />
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
<script>
if (window.location.hostname !== 'localhost') {
var script = document.createElement('script');
script.async = true;
script.defer = true;
script.src = 'https://scripts.simpleanalyticscdn.com/latest.js';
document.head.appendChild(script);
var noscript = document.createElement('noscript');
var img = document.createElement('img');
img.src = 'https://queue.simpleanalyticscdn.com/noscript.gif';
img.alt = '';
img.referrerPolicy = 'no-referrer-when-downgrade';
noscript.appendChild(img);
document.head.appendChild(noscript);
}
</script>
</body>
</html>