add 500 catcher

This commit is contained in:
2023-08-20 12:10:11 +03:00
parent 05073604a9
commit 28c01a7fc6
2 changed files with 25 additions and 1 deletions

13
templates/500.html.tera Normal file
View File

@@ -0,0 +1,13 @@
{% extends "base" %}
{% block title %}404{% endblock title %}
{% block nav %}
{% endblock nav %}
{% block content %}
<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">500</h1>
<br/>
<p>&#128558; Ой, кажется у нас тут что то сломалось...</p>
</div>
</div>
{% endblock content %}