-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
35 lines (31 loc) · 1.04 KB
/
404.html
File metadata and controls
35 lines (31 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Redirecting...</title>
<meta name="robots" content="noindex, nofollow, noarchive, nosnippet">
<style>
body,html{margin:0;padding:0;height:100%;font:15px/1.6 "Libre Baskerville", Georgia, serif;background:#f9fafb;color:#1f2937;display:flex;align-items:center;justify-content:center}
.msg{text-align:center;padding:2rem;max-width:90%}
.msg h1{font-size:1.3rem;margin-bottom:.5rem;color:#4b5563}
.msg p{font-size:.95rem;color:#6b7280}
@media(max-width:640px){.msg{padding:1.5rem}h1{font-size:1.2rem}}
</style>
<script>
const path = location.pathname;
const keyMatch = path.match(/([a-zA-Z0-9_-]{36})$/i);
if (keyMatch) {
location.replace("/#" + keyMatch[1].toLowerCase() + location.search);
} else {
location.replace("/");
}
</script>
</head>
<body>
<div class="msg">
<h1>Redirecting...</h1>
<p>Please wait while we load your private CV.</p>
</div>
</body>
</html>