rimgo/views/errors/error.hbs

22 lines
555 B
Handlebars
Raw Normal View History

2022-09-13 20:31:55 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>Error - rimgo</title>
2023-06-10 16:04:29 +00:00
{{> partials/head }}
2022-09-13 20:31:55 +00:00
</head>
2023-06-10 16:04:29 +00:00
<body class="font-sans text-lg bg-slate-800 text-white">
{{> partials/nav }}
2022-09-13 20:31:55 +00:00
2023-06-10 16:04:29 +00:00
<main class="flex flex-col">
<h2 class="text-2xl font-bold">An error occurred</h2>
2022-09-13 20:31:55 +00:00
<p>You may have found a bug in rimgo. If this is a bug, open an issue on <a href="https://codeberg.org/video-prize-ranch/rimgo/issues/new">Codeberg</a>.</p>
2023-06-10 16:04:29 +00:00
<code class="mt-4 p-2 bg-slate-600 rounded-md">{{err}}</code>
2022-09-13 20:31:55 +00:00
</main>
2023-06-10 16:04:29 +00:00
{{> partials/footer }}
2022-09-13 20:31:55 +00:00
</body>
</html>