micrach/templates/404.html

27 lines
536 B
HTML
Raw Normal View History

2021-10-16 14:36:52 +03:00
<!DOCTYPE html>
2021-09-05 15:35:20 +03:00
<html lang="en">
<head>
2021-09-05 15:38:08 +03:00
{{ template "static" }}
<link
2021-10-16 13:14:45 +03:00
href="/static/styles/error-image.css"
2021-09-05 15:38:08 +03:00
rel="stylesheet"
>
2021-09-05 15:35:20 +03:00
2021-10-05 21:53:12 +03:00
{{ template "meta-tags-static" }}
2021-09-05 15:35:20 +03:00
</head>
<body>
<div class="h-100 d-flex justify-content-center align-items-center flex-column">
<h1>404</h1>
2021-10-16 13:52:25 +03:00
<h1 class="text-center">PAGE NOT FOUND</h1>
2021-09-05 16:02:17 +03:00
<a href="/" class="error-image-link">
<img
class="error-image"
src="/static/images/errors/404.png"
alt="Not found"
>
</a>
2021-09-05 15:35:20 +03:00
</div>
</body>
</html>