-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy path404.html
More file actions
32 lines (30 loc) · 1.03 KB
/
404.html
File metadata and controls
32 lines (30 loc) · 1.03 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Error 404</title>
<link rel="shortcut icon" href="/favicon.ico" type="image/png">
</head>
<body>
<!-- inject:navbar -->
<center><img src="/src/images/assets/404.png" style="height: 200px; margin-top: 80px;">
<p>We could not find <span id="route">the page you were looking for</span>.<br/><br/>The reasons why this page might display the error is: </p>
<ol>
<li>page doesn't exist</li>
<li>mispelled URL</li>
<li>page has been removed</li>
<li>page has been moved to a new location.</li>
</ol>
<a href="/"><button class="buttonFrBx">Go
home</button></a>
</center>
<br/>
<!-- inject:footer -->
</body>
<script>
document.getElementById("route").innerHTML = 'route "' + document.URL.replaceAll(window.location.origin, "") + '"';
</script>
<script src="/index.js"></script>
<script src="/src/scripts/replacer.js"></script>
</html>