6 lines
167 B
Twig
6 lines
167 B
Twig
{% extends 'partials/base.html.twig' %}
|
|
{% set page_title = 'Error 404' %}
|
|
{% block content %}
|
|
<h2>Error 404</h2>
|
|
<p>This page doesn't exist</p>
|
|
{% endblock %} |