500.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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
<!--
SPDX-FileCopyrightText: 2023 Gil Poiares-Oliveira <gil@poiares-oliveira.com>
SPDX-License-Identifier: MIT
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 Not Found | Gil Oliveira</title>
<style>
body {
background-color: #121212;
max-width: 50rem;
margin: auto;
color: var(--accent-color);
font-family: "Helvetica Neue", sans-serif;
color: white;
}
main {
margin-left: 10px;
margin-right: 10px;
}
footer {
position: fixed;
bottom: 5px;
font-size: .75rem;
}
a {
text-decoration: none;
color: white;
}
h1 {
font-size: 4em;
}
.description {
margin-top: 4em;
font-size: 1.25em;
}
.explaination {
font-size: 1em;
}
.error-text {
background-color: #212121;
font-size: 1.25em;
border-radius: .25em;
padding: 1em;
}
.button {
background-color: #212121;
border-radius: .5em;
padding: .75em;
border: solid grey;
}
.button-div {
margin-top: 5rem;
}
</style>
</head>
<body>
<main>
<h1>Something went wrong on our end 🥴</h1>
<div class="error">
<span class="error-text">⚠️ HTTP error: <code>500 Internal Server Error</code></span>
</div>
<div class="description">
<p>Sorry! Our systems have encountered a situation that they don't know how to handle.</p>
</div>
<div class="explaination">
<p>Here's what you can do:</p>
<ul>
<li>Come back later.</li>
<li>Refresh the page.</li>
<li>Try the homepage.</li>
</ul>
</div>
<div class="button-div">
<a class="button" href="/">🏠 Go home</a>
</div>
</main>
</body>
</html>
|