diff options
author | sptaule <lecas83@gmail.com> | 2022-02-01 18:56:05 +0100 |
---|---|---|
committer | sptaule <lecas83@gmail.com> | 2022-02-01 18:56:05 +0100 |
commit | 4b4dee731fbd24f986c0eb503516ac85301f37fd (patch) | |
tree | 6f160c77f72469ccca9f275709650de48eb1230a /templates/404.html | |
parent | 029e024b1543de11117793ee7aa8b6257e241ccf (diff) | |
download | garagehq.deuxfleurs.fr-4b4dee731fbd24f986c0eb503516ac85301f37fd.tar.gz garagehq.deuxfleurs.fr-4b4dee731fbd24f986c0eb503516ac85301f37fd.zip |
Fix typo on 404, Remove useless blocks on templates
Diffstat (limited to 'templates/404.html')
-rwxr-xr-x | templates/404.html | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/templates/404.html b/templates/404.html index 7885942..c759261 100755 --- a/templates/404.html +++ b/templates/404.html @@ -3,20 +3,20 @@ {% block content %} <section class="py-48"> - <div class="w-full mx-auto"> - <div class="flex items-center justify-center" style="min-height:40vh;"> - <div class="flex flex-col items-center justify-center w-96 mx-auto"> - <h1 class="flex items-center justify-around space-x-2 text-2xl text-garage-gray"> - <span class="text-garage-orange font-semibold">HTTP 404</span> - </h1> - <p class="text-gray-900 font-light text-center"> - What a shame!<br>The page you are looking for does not exist. - </p> - <a href="/" class="text-garage-gray hover:text-garage-orange underline"> - Go back to homepage - </p> - </div> + <div class="w-full mx-auto"> + <div class="flex items-center justify-center" style="min-height:40vh;"> + <div class="flex flex-col items-center justify-center w-96 mx-auto"> + <h1 class="flex items-center justify-around space-x-2 text-2xl text-garage-gray"> + <span class="text-garage-orange font-semibold">HTTP 404</span> + </h1> + <p class="text-gray-900 font-light text-center"> + What a shame!<br>The page you are looking for does not exist. + </p> + <a href="/" class="text-garage-gray hover:text-garage-orange underline"> + Go back to homepage + </a> + </div> + </div> </div> - </div> </section> -{% endblock %} +{% endblock %}
\ No newline at end of file |