fix error page

This commit is contained in:
2023-01-17 21:56:20 +01:00
parent 8574988b21
commit 38a713efa7

View File

@@ -1,6 +1,11 @@
{% extends 'partials/base.html.twig' %}
{% set page_title = 'Błąd 404' %}
{% block content %}
<h2>Błąd 404</h2>
<p>Ta strona nie istnieje</p>
{% if page.header.left %}
<div class="left">
{{ page.content | raw }}
</div>
{% else %}
{{ page.content|raw }}
{% endif %}
{% endblock %}