-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
30 lines (29 loc) · 1.78 KB
/
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
25
26
27
28
29
30
<!DOCTYPE html>
<html>
<head>
<title>Noodle - Not Found</title>
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inter">
<link rel="stylesheet" href="main.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="text/javascript">
window.onload = function () {
document.getElementById("sorry").innerHTML = `Sorry but we couldn't find <strong>'${decodeURI(window.location.href.match(/(?<=q=).+/gm)??'that')}'<strong/>`;
document.getElementById("copyright").innerHTML = `©${new Date().getFullYear()} Niclas Jung | <a href="./about.html">About</a>`;
};
</script>
</head>
<body>
<div class="center">
<div class="error">
<img src="https://www.google.com/images/errors/robot.png" height="150px">
<p style="font-size: 30px; font-weight: bold;">404 - Not Found</p>
<p id="sorry">Sorry but we couldn't find what you're looking for</p>
<p>Perhaps you're looking for <a href="./article/adventures.html">Adventures</a>, <a href="./article/financial-future.html">Financial Future</a>, <a href="./article/productivity.html">Productivity</a>, <a href="./article/sustainability.html">Sustainability</a>, <a href="./article/time-management.html">Time Management</a>, <a href="about.html">About us</a></p>
<p>Or back to <a href="index.html">home</a></p>
<p>Find more support <a href="mailto:[email protected]">here</a></p>
</div>
</div>
<p class="copyright" id="copyright">©2023 Niclas Jung | <a href="./about.html">About</a></p>
</body>
</html>