-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
34 lines (32 loc) · 1.25 KB
/
404.html
File metadata and controls
34 lines (32 loc) · 1.25 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
34
---
layout: default
---
<div class="flex flex-row justify-center items-center" style="margin-top: 1rem; margin-bottom: 1rem; width: 100%;">
<div class="window glass active" style="--window-background-color: #96B844; width: 100%;">
<div class="title-bar">
<div class="title-bar-text">Error</div>
<div class="title-bar-controls">
<button aria-label="Minimize"></button>
<button aria-label="Maximize"></button>
<button aria-label="Close" onclick="window.location.href = '/';"></button>
</div>
</div>
<div class="window-body">
<div class="flex flex-row items-center" style="margin: 1rem;">
<img src="/img/icon/error.ico" class="icon-lg" style="margin-right: 1rem;" />
<div class="flex flex-column">
<p>
<span class="bold">Page not found</span><br/>
Sorry, this page could not be found. Please try the following:
<ul>
<li>Check if the URL you're trying to reach is spelled correctly</li>
<li>Make sure you're on the right website (you're on byteofmelon.com currently)</li>
<li>Check the top navigation bar to find the URL you're looking for</li>
</ul>
</p>
<button style="max-width: 75px;" onclick="window.location.href = '/';">OK</button>
</div>
</div>
</div>
</div>
</div>