mirror of
https://github.com/WerySkok/weryskok.ru.git
synced 2025-04-24 19:49:11 +03:00
* ci: disable action as it will need a rework * refactor: change SSG to Zola * ci: set up action for Zola
11 lines
350 B
HTML
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 %}
|
|
|