11 lines
374 B
Twig
11 lines
374 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Page Not Found (404){% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="d-flex justify-content-center align-items-center vh-100">
|
|
<h1>Oops! La page n'existe pas (404)</h1>
|
|
<p>La page que vous cherchez n'existe pas.</p>
|
|
<a href="{{ path('app_index') }}"> Retour à l'accueil </a>
|
|
</div>
|
|
{% endblock %} |