Merge redesign into main (#111)

This commit is contained in:
video-prize-ranch
2023-06-10 12:04:29 -04:00
parent 922480f05a
commit 4de1fa1e79
52 changed files with 598 additions and 371 deletions

View File

@@ -2,22 +2,21 @@
<html lang="en">
<head>
{{> 'partials/head' }}
<link rel="stylesheet" href="/static/css/error.css" />
<title>Error - rimgo</title>
{{> partials/head }}
</head>
<body>
{{> 'partials/header' }}
<body class="font-sans text-lg bg-slate-800 text-white">
{{> partials/nav }}
<main>
<h2 class="errorTitle">An error occurred</h2>
<main class="flex flex-col">
<h2 class="text-2xl font-bold">An error occurred</h2>
<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>
<code>{{err}}</code>
<code class="mt-4 p-2 bg-slate-600 rounded-md">{{err}}</code>
</main>
{{> partials/footer }}
</body>
</html>