-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
81 lines (81 loc) · 2.41 KB
/
Copy path404.html
File metadata and controls
81 lines (81 loc) · 2.41 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>404 | tbd</title>
<link rel="stylesheet" href="/css/style.css" />
<link rel="icon" type="image/png" href="/favicon.ico" />
<link rel="alternate" type="application/rss+xml" title="tbd RSS Feed" href="/feed.xml" />
<link
href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&display=swap"
rel="stylesheet"
/>
<style>
.error-terminal {
font-family: "Fira Code", monospace;
color: var(--accent, #39ff14);
max-width: 520px;
margin: 4em auto;
padding: 2em;
text-align: left;
line-height: 2;
}
.error-code {
font-size: clamp(3rem, 12vw, 6rem);
font-weight: 700;
margin: 0;
text-shadow: 0 0 24px rgba(57, 255, 20, 0.5);
letter-spacing: -2px;
}
.error-msg {
color: var(--fg, #d6f5e3);
font-size: 1rem;
margin: 0.5em 0 1.5em;
}
.error-links {
display: flex;
gap: 1.5em;
flex-wrap: wrap;
}
.error-links a {
color: var(--accent, #39ff14);
text-decoration: none;
border-bottom: 1px solid rgba(57, 255, 20, 0.4);
padding-bottom: 2px;
transition: border-color 0.2s;
}
.error-links a:hover {
border-color: var(--accent, #39ff14);
}
.error-prompt::before {
content: "> ";
opacity: 0.5;
}
</style>
</head>
<body>
<header></header>
<div class="error-terminal">
<p class="error-code">404</p>
<p class="error-msg error-prompt">page not found</p>
<p class="error-msg" style="opacity: 0.6; font-size: 0.85rem;">
the path you requested does not exist on this server.
</p>
<div class="error-links">
<a href="/">~ home</a>
<a href="/blog">~ blog</a>
<a href="/travel">~ travel</a>
</div>
</div>
<footer></footer>
<script src="/js/include-components.js"></script>
<script src="/js/site-data.js"></script>
<script src="/js/presence.js"></script>
<script src="/js/term-core.js"></script>
<script src="/js/term-commands.js"></script>
<script src="/js/now-data.js"></script>
<script src="/js/term-overlay.js"></script>
<script src="/js/main.js"></script>
</body>
</html>