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,21 +2,20 @@
<html lang="en">
<head>
{{> 'partials/head' }}
<title>Not Found - rimgo</title>
<link rel="stylesheet" href="/static/css/error.css" />
<title>404 Not Found - 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">404 Not Found</h2>
<p class="errorTitle">Click <a href="/">here</a> to return to home.</p>
<h2 class="text-2xl font-bold">Not Found</h2>
<p>Click <a href="/">here</a> to return to home.</p>
</main>
{{> partials/footer }}
</body>
</html>

View File

@@ -2,21 +2,20 @@
<html lang="en">
<head>
{{> 'partials/head' }}
<link rel="stylesheet" href="/static/css/error.css" />
<title>Rate limited by Imgur - 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">Rate limited by Imgur</h2>
<p class="errorTitle">This instance has been temporarily blocked by Imgur. <a href="https://rimgo.codeberg.page/">Try using another instance</a>.</p>
<h2 class="text-2xl font-bold">Rate limited by Imgur</h2>
<p>This instance has been temporarily blocked by Imgur. <a href="https://rimgo.codeberg.page/#{{ path }}">Try using another instance ></a></p>
</main>
{{> partials/footer }}
</body>
</html>

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>