Files
fizzy/public/404.html
T
David Heinemeier Hansson 7bebea07b4 Simplify the error handling
Just use normal HTML + static CSS
2025-10-29 17:39:57 +01:00

22 lines
563 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!doctype html>
<html lang="en">
<head>
<title>404 Not Found</title>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, width=device-width">
<meta name="robots" content="noindex, nofollow">
<link rel="stylesheet" href="/error.css">
</head>
<body>
<hgroup class="error-page__stamp">
<h1>404</h1>
<h2>Sorry, that page doesnt exist!</h2>
<hr />
<div>You may have mistyped the address or the page may have moved.</div>
</hgroup>
<a href="/">&larr; Back home</a>
</body>
</html>