19 lines
916 B
Twig
19 lines
916 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block body %}
|
|
<section class="flex items-center h-full p-16 dark:bg-gray-900 dark:text-gray-100">
|
|
<div class="container flex flex-col items-center justify-center px-5 mx-auto my-8">
|
|
<div class="max-w-md text-center">
|
|
<h2 class="mb-8 font-extrabold text-9xl dark:text-gray-600">
|
|
😭
|
|
</h2>
|
|
<p class="text-2xl font-semibold md:text-3xl"><span class="font-bold">Oups !</span> Tu sembles perdu 🥲
|
|
</p>
|
|
<p class="mt-4 mb-8 dark:text-gray-400">{{ exception.message }}</p>
|
|
<a rel="noopener noreferrer" href="{{ path('home_index') }}"
|
|
class="px-8 py-3 font-semibold rounded dark:bg-violet-400 dark:text-gray-900">Retour à la page
|
|
d'accueil</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{% endblock %} |