-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
70 lines (63 loc) · 2.4 KB
/
404.html
File metadata and controls
70 lines (63 loc) · 2.4 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
---
---
<!DOCTYPE html>
<html lang="en">
<script>
var urls = {
cs118: "https://omarelamri.notion.site/CS-118-Computer-Network-Fundamentals-744465fa57db4953aadfbcd05a2aa274?pvs=4",
resume: '{{ "/assets/other/resume.pdf" | relative_url }}',
"resume.pdf": '{{ "/assets/other/resume.pdf" | relative_url }}',
li: "https://linkedin.com/in/omarelamri",
gh: "https://github.com/eado",
notes: "https://omarelamri.notion.site",
recurse: "loop",
loop: "recurse",
zoom: "https://ucla.zoom.us/my/omarelamri",
bgp: "https://docs.google.com/presentation/d/1pqv7PQe_5fKisnrGO9jW_SFEVRXGpjtMCFxJaIY-zk0",
zkmb: "https://docs.google.com/presentation/d/1KD-z8HGNyLFFCBBN4wx3hbLhK18TITHajBTae-QWBlU",
ipmock: "https://docs.google.com/presentation/d/1ZSondD1tlN2A8rpoNEqtskKicf28NJGDDHMCw0EiaJw",
nbac: "https://docs.google.com/presentation/d/1A-9-ux_6L_pD76f9DwFvljkBfS5W1MMwXJ9PjpWK5t4",
starlink: "https://docs.google.com/presentation/d/1xFwyy69Kt0JJL33Kmm30Ao5Efd9kmAKR3ceNRFnz9i0",
};
var path = location.pathname.substr(1).toLowerCase();
if (path in urls) {
location.href = urls[path];
}
</script>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Oh no!</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Readex+Pro:wght@200;300;400;500;600;700&display=swap"
rel="stylesheet" />
<style>
* {
font-family: "Readex Pro", system-ui, -apple-system,
BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
body {
margin-top: 25vh;
margin-left: 10vw;
}
button {
color: white;
background-color: #1155cc;
border: none;
padding: 10px;
border-radius: 10px;
}
a {
text-decoration: none;
color: white;
}
</style>
</head>
<body>
<h1>There's nothing to see here!</h1>
<p>Hmm...we can't seem to find that link.</p>
<button><a href='{{ "/" | relative_url }}'>Head back to safety</a></button>
</body>
</html>