rimgo/views/errors/404.hbs

22 lines
366 B
Handlebars
Raw Normal View History

2022-05-23 15:30:17 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
{{> 'partials/head' }}
2022-12-21 00:35:48 +00:00
<link rel="stylesheet" href="/static/css/error.css" />
2022-09-13 20:31:55 +00:00
<title>404 Not Found - rimgo</title>
2022-05-23 15:30:17 +00:00
</head>
<body>
{{> 'partials/header' }}
<main>
<h2 class="errorTitle">404 Not Found</h2>
<p class="errorTitle">Click <a href="/">here</a> to return to home.</p>
</main>
</body>
</html>