20 lines
298 B
Handlebars
20 lines
298 B
Handlebars
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
{{> 'partials/head' }}
|
||
|
|
||
|
<title>404 - rimgo</title>
|
||
|
</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>
|