You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
589 B
9 lines
589 B
{% extends "base.html" %} |
|
{% block title %}500 — внутренняя ошибка{% endblock %} |
|
{% block content %} |
|
<section class="rounded-2xl bg-white shadow-sm border border-ink-300/60 p-8 text-center"> |
|
<span class="material-symbols-outlined text-5xl text-red-600">error</span> |
|
<h1 class="mt-2 text-xl font-semibold">Что-то пошло не так</h1> |
|
<p class="mt-1 text-ink-500">Попробуйте обновить страницу. Если ошибка повторяется — посмотрите логи сервера.</p> |
|
</section> |
|
{% endblock %}
|
|
|