rimgo/views/errors/404.hbs

21 lines
359 B
Handlebars
Raw Normal View History

2022-05-23 15:30:17 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
2023-06-10 16:04:29 +00:00
<title>Not Found - rimgo</title>
2022-05-23 15:30:17 +00:00
2023-06-10 16:04:29 +00:00
{{> partials/head }}
2022-05-23 15:30:17 +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-05-23 15:30:17 +00:00
<main>
2023-06-10 16:04:29 +00:00
<h2 class="text-2xl font-bold">Not Found</h2>
<p>Click <a href="/">here</a> to return to home.</p>
2022-05-23 15:30:17 +00:00
</main>
2023-06-10 16:04:29 +00:00
{{> partials/footer }}
2022-05-23 15:30:17 +00:00
</body>
</html>