qchgk_web/templates/404.html.tera

13 lines
436 B
Plaintext
Raw Normal View History

2019-08-05 14:06:27 +00:00
{% extends "base" %}
2019-08-02 10:47:16 +00:00
{% block title %}404{% endblock title %}
2023-08-20 08:51:50 +00:00
{% block nav %}
{% endblock nav %}
2019-08-02 10:47:16 +00:00
{% block content %}
2023-08-20 08:51:50 +00:00
<div class="content-block">
<div class="content-block-inner mt-4 px-4 py-2 fs-1 top-50 start-50 translate-middle">
<h1 class="display-4 d-flex justify-content-center text-center fw-bold">404</h1>
<br/>
<p>Нет такой страницы &#128532;</p>
</div>
</div>
2019-08-02 10:47:16 +00:00
{% endblock content %}