Files
kupshop/web/common/twig/templates/view/error404.html.twig
2025-08-02 16:30:27 +02:00

14 lines
305 B
Twig

{% extends 'index.html.twig' %}
<twig:block name="breadcrumbs"></twig:block>
{% block main %}
<twig:Exception:View404>
{% if this.content %}
{{ this.content|raw }}
{% else %}
<h1 class="text-center">404</h1>
{% endif %}
</twig:Exception:View404>
{% endblock %}