-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
96 lines (95 loc) · 3.32 KB
/
Copy path404.html
File metadata and controls
96 lines (95 loc) · 3.32 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Not Found — Crow Intelligence</title>
<meta name="robots" content="noindex">
<link rel="icon" href="/favicon.ico" sizes="any">
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16.png">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link rel="manifest" href="/site.webmanifest">
<script>
(function () {
var p = window.location.pathname;
var qs = window.location.search + window.location.hash;
var map = {
'/about/': '/about.html',
'/research/': '/projects.html',
'/portfolio-3/': '/projects.html'
};
if (map[p]) { window.location.replace(map[p] + qs); return; }
if (/^\/\d{4}\/\d{2}\/\d{2}\//.test(p) ||
/^\/(page|category|tag|author|feed|comments|wp-)/.test(p)) {
window.location.replace('https://blog.crowintelligence.org' + p + qs);
}
})();
</script>
<link href="https://fonts.googleapis.com/css2?family=IM+Fell+English:ital@0;1&family=Courier+Prime:wght@400;700&display=swap" rel="stylesheet">
<style>
html, body { height: 100%; margin: 0; }
body {
background: #1a1a1f;
color: #e8e6e1;
font-family: 'Courier Prime', 'Courier New', monospace;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
}
.wrap {
max-width: 36rem;
text-align: center;
}
h1 {
font-family: 'IM Fell English', Georgia, serif;
font-size: 3rem;
color: #e8c97e;
margin: 0 0 0.5rem;
font-weight: normal;
}
.greek {
font-family: 'IM Fell English', Georgia, serif;
font-style: italic;
color: #9a988f;
margin-bottom: 2rem;
}
p { line-height: 1.6; }
a { color: #e8c97e; }
a:hover { color: #d4b56a; }
.links {
margin-top: 2rem;
display: flex;
gap: 1.5rem;
justify-content: center;
flex-wrap: wrap;
}
.btn {
display: inline-block;
padding: 0.6rem 1.2rem;
border: 1px solid #e8c97e;
color: #e8c97e;
text-decoration: none;
font-family: 'Courier Prime', monospace;
}
.btn:hover {
background: #e8c97e;
color: #1a1a1f;
}
</style>
</head>
<body>
<div class="wrap">
<h1>404</h1>
<p class="greek">Οὐδὲν εὑρέθη — nothing was found here.</p>
<p>The page you're looking for doesn't exist at this address. If you arrived from an old link, it may have moved.</p>
<div class="links">
<a class="btn" href="/">Home</a>
<a class="btn" href="/services.html">Services</a>
<a class="btn" href="https://blog.crowintelligence.org/">Blog</a>
</div>
</div>
</body>
</html>