Files
fizzy/public/500.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
558 B
HTML

<!doctype html>
<html lang="en">
<head>
<title>500 Internal Server Error</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>500</h1>
<h2>Internal server error</h2>
<hr />
<div>Something went wrong on our end; please try again later.</div>
</hgroup>
<a href="/">&larr; Back home</a>
</body>
</html>