Files
fizzy/public/406.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
567 B
HTML

<!doctype html>
<html lang="en">
<head>
<title>406 Not Acceptable</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>406</h1>
<h2>Not acceptable</h2>
<hr />
<div>The requested resource is not available in a format acceptable to your browser.</div>
</hgroup>
<a href="/">&larr; Back home</a>
</body>
</html>