2021-10-16 14:36:52 +03:00
|
|
|
<!DOCTYPE html>
|
2021-09-11 16:56:22 +03:00
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
{{ template "static" }}
|
|
|
|
<link
|
2021-10-16 13:14:45 +03:00
|
|
|
href="/static/styles/error-image.css"
|
2021-09-11 16:56:22 +03:00
|
|
|
rel="stylesheet"
|
|
|
|
>
|
|
|
|
|
2021-10-05 21:53:12 +03:00
|
|
|
{{ template "meta-tags-static" }}
|
2021-09-11 16:56:22 +03:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2021-10-16 18:06:56 +03:00
|
|
|
<div class="vh-100 d-flex justify-content-center align-items-center flex-column">
|
2021-09-11 16:56:22 +03:00
|
|
|
<h1>400</h1>
|
2021-10-16 13:52:25 +03:00
|
|
|
<h1 class="text-center">{{ .Message }}</h1>
|
2021-09-11 16:56:22 +03:00
|
|
|
<a href="/" class="error-image-link">
|
|
|
|
<img
|
|
|
|
class="error-image"
|
|
|
|
src="/static/images/errors/404.png"
|
|
|
|
alt="Bad request"
|
|
|
|
>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|