-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (36 loc) · 1.18 KB
/
index.html
File metadata and controls
36 lines (36 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Max Kolysh</title>
<meta property="og:title" content="Max Kolysh" />
<meta property="og:description" content="Max Kolysh" />
<meta property="og:url" content="https://maxkolysh.com" />
<meta property="og:type" content="website" />
<script
src="https://cdn.databuddy.cc/databuddy.js"
data-client-id="ac990615-e560-49b4-a11b-6c7e4ee4f38d"
crossorigin="anonymous"
async
></script>
</head>
<body>
<div id="root"></div>
<script>
// Handle GitHub Pages 404 redirect
(function() {
var redirect = sessionStorage.getItem('redirect');
if (redirect) {
sessionStorage.removeItem('redirect');
var url = new URL(redirect);
if (url.pathname !== '/' || url.search || url.hash) {
history.replaceState(null, '', url.pathname + url.search + url.hash);
}
}
})();
</script>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>