micrach/templates/404.html
2021-10-16 14:36:52 +03:00

27 lines
536 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
{{ template "static" }}
<link
href="/static/styles/error-image.css"
rel="stylesheet"
>
{{ template "meta-tags-static" }}
</head>
<body>
<div class="h-100 d-flex justify-content-center align-items-center flex-column">
<h1>404</h1>
<h1 class="text-center">PAGE NOT FOUND</h1>
<a href="/" class="error-image-link">
<img
class="error-image"
src="/static/images/errors/404.png"
alt="Not found"
>
</a>
</div>
</body>
</html>