-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
51 lines (43 loc) · 1.31 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!doctype html>
<!-- 404.html ── 404 error page ──*
│
│ Copyright (c) 2024 Deimonn (a.k.a. Nahuel S. Cisterna)
│
│ This file is licensed under the MIT License.
│
│ See https://raw.githubusercontent.com/deimonn/deimonn.github.io/master/LICENSE for license information.
│
-->
<!-- SPDX-License-Identifier: MIT -->
<html lang="en">
<head>
<!-- Title & icon -->
<title>404 Not Found - deimonn.dev</title>
<link rel="icon" type="image/x-icon" href="404.png">
<!-- Metadata -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<!-- Toolbar -->
<div id="dd-toolbar">
<sl-include src="/includes/toolbar.html" allow-scripts></sl-include>
</div>
<!-- Main -->
<main>
<div>
<h1>deimonn.dev</h1>
<h2>404 Not Found</h2>
<p>The page you're trying to access could not be found</p>
<a href="/">Go back to home page</a>
</div>
</main>
<!-- Footer -->
<footer>
<sl-include src="/includes/footer.html" allow-scripts></sl-include>
</footer>
</body>
<!-- References -->
<link rel="stylesheet" href="index.css">
<script type="module" src="https://cdn.jsdelivr.net/npm/@shoelace-style/shoelace@2.18.0/cdn/shoelace.js"></script>
</html>