-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
33 lines (33 loc) · 1.29 KB
/
404.html
File metadata and controls
33 lines (33 loc) · 1.29 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
<html>
<head>
<title>404</title>
<meta charset="UTF-8">
<link rel="icon" type="image/x-icon" href="/images/logos/favicon.ico">
<link rel="stylesheet" href="/fonts/Uni Sans/stylesheet.css">
<link rel="stylesheet" href="/fonts/Montserrat/stylesheet.css">
<link rel="stylesheet" href="/css/404.html.css">
</head>
<body>
<one>
<articlename>404</articlename>
</one>
<two>
<pronunciation>/ˌfɔːr əʊ ˈfɔː(r)/</pronunciation>
</two>
<hr>
<articletype>noun</articletype>
<ol><li><span>a message that appears on a computer screen that tells you that an internet address cannot be found</span></li></ol>
<articletype>adjective</articletype>
<ol><li><span>used to describe someone or something that is missing or not very intelligent</span></li></ol>
<logo>××</logo>
</body>
<script>
const validDirectories = ["/DeadForge", "/RestoreBackup", "/WikiPhilosophyGame"];
const path = window.location.pathname.replace(/\/$/, '');
validDirectories.forEach(directory => {
if (directory.toLowerCase() == path.toLowerCase()) {
window.location.pathname = directory;
}
})
</script>
</html>