-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path404.html
More file actions
36 lines (36 loc) · 1.52 KB
/
Copy path404.html
File metadata and controls
36 lines (36 loc) · 1.52 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">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script>(()=>{try{document.documentElement.dataset.theme=localStorage.getItem('theme')||'dark'}catch(e){document.documentElement.dataset.theme='dark'}})()</script>
<title>Not found - jz</title>
<meta name="robots" content="noindex">
<!-- GitHub Pages serves this for any missing path, so every URL here is root-absolute. -->
<link rel="icon" href="/jz.svg" type="image/svg+xml">
<link rel="stylesheet" href="/assets/site.css">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { min-height: 100%; }
body { background: var(--paper); color: var(--ink); font-family: var(--font); }
main { max-width: var(--cw); margin: 0 auto; padding: 18vh var(--padx) 24vh; }
h1 { font-size: clamp(28px, 5vw, 48px); font-weight: 700; letter-spacing: -.02em; line-height: 1.06; }
p { margin-top: 16px; font-size: 16px; line-height: 24px; color: var(--dim); }
p a { color: var(--ink); }
</style>
</head>
<body>
<header class="masthead">
<div class="brand"><a class="logo" href="/"><img src="/jz.svg" width="40" height="40" alt="jz"></a><span class="sub">404</span></div>
<nav>
<a href="/repl/">repl</a>
<a href="/examples/">examples</a>
<a href="/bench/">bench</a>
</nav>
</header>
<main>
<h1>No such page.</h1>
<p>Try the <a href="/">home page</a>, the <a href="/repl/">repl</a>, the <a href="/examples/">examples</a> or the <a href="/bench/">bench</a>.</p>
</main>
</body>
</html>