Files
ENI-sortir/templates/bundles/TwigBundle/Exception/error404.html.twig
jleroy2023 8f75b8a125 set front
2024-11-18 14:41:52 +01:00

21 lines
955 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">
404
</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">
Cette page n'existe pas !
</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 %}