-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (37 loc) · 1.44 KB
/
Copy pathindex.html
File metadata and controls
37 lines (37 loc) · 1.44 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/fantasy_ctf.svg" />
<link rel="icon" type="image/png" href="/fantasy_ctf.png" />
<link rel="shortcut icon" href="/fantasy_ctf.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="FantasyCTF — Jon Marien's personal CTF portfolio. 22 challenges across crypto, prog, LLM, OSINT, rev, and misc."
/>
<meta property="og:title" content="FantasyCTF" />
<meta
property="og:description"
content="FantasyCTF — Jon Marien's personal CTF portfolio. 22 challenges across crypto, prog, LLM, OSINT, rev, and misc."
/>
<meta property="og:url" content="https://ctf.chron0.tech" />
<meta property="og:site_name" content="FantasyCTF" />
<meta property="og:type" content="website" />
<meta property="og:image" content="https://ctf.chron0.tech/og-image.png" />
<title>FantasyCTF</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<script>
// Hide body immediately, then unhide once stylesheets load to prevent FOUC
document.body.style.opacity = "0";
function ready() {
document.body.style.opacity = "1";
}
if (document.readyState === "complete") ready();
else window.addEventListener("load", ready);
</script>
</body>
</html>