weryskok.ru/templates/404.html
Alexander Minkin 7aa6938137
refactor: change SSG to Zola (#1)
* ci: disable action as it will need a rework

* refactor: change SSG to Zola

* ci: set up action for Zola
2024-09-22 15:06:28 +03:00

11 lines
350 B
HTML

{% extends "base.html" %}
{% block title %}Ошибка 404{% endblock title %}
{% block content -%}
<section class="d-flex align-items-center justify-content-center vh-100">
<div>
<h1 class="display-3">Ошибка 404</h1>
<p>Здесь ничего нет, зря ищешь.</p>
</div>
</section>
{%- endblock content %}