-
Notifications
You must be signed in to change notification settings - Fork 19
/
404.html
24 lines (22 loc) · 921 Bytes
/
404.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!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: <br/>Mispelled URL, Page doesn't exist anymore, Page has been moved to a new place.</p>
<a href="/"><button class="buttonFrBx">Go
home</button></a>
</center>
</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>