-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (44 loc) · 1.6 KB
/
index.html
File metadata and controls
50 lines (44 loc) · 1.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Addison Goolsbee</title>
<meta name="description" content="Addison Goolsbee is a software engineer in Seattle building experimental web projects and tools." />
<meta name="author" content="Addison Goolsbee" />
<meta name="theme-color" content="#000000" />
<link rel="icon" href="/favicon.ico" sizes="any">
<link rel="canonical" href="https://addisongoolsbee.com" id="canonical-link" />
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-P0SKENSRPZ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-P0SKENSRPZ');
</script>
<style>
body {
background-color: #1f2937;
}
</style>
<script>
// If we were redirected from /404.html (static host SPA fallback),
// restore the intended path before the router initializes.
(function () {
var params = new URLSearchParams(window.location.search);
var p = params.get('p');
if (!p) return;
var q = params.get('q');
var h = params.get('h');
var newUrl = p + (q ? ('?' + decodeURIComponent(q)) : '') + (h ? ('#' + decodeURIComponent(h)) : '');
window.history.replaceState(null, '', newUrl);
})();
</script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script src="/src/index.tsx" type="module"></script>
</body>
</html>