2022-01-24 17:36:50 +00:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<section class="py-48">
|
2022-02-01 17:56:05 +00:00
|
|
|
<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">
|
2023-05-23 15:08:08 +00:00
|
|
|
<h1 class="flex items-center justify-around space-x-2 text-2xl text-aerogramme-gray">
|
|
|
|
<span class="text-aerogramme-blue font-semibold">HTTP 404</span>
|
2022-02-01 17:56:05 +00:00
|
|
|
</h1>
|
|
|
|
<p class="text-gray-900 font-light text-center">
|
|
|
|
What a shame!<br>The page you are looking for does not exist.
|
|
|
|
</p>
|
2023-05-23 15:08:08 +00:00
|
|
|
<a href="/" class="text-aerogramme-gray hover:text-aerogramme-blue underline">
|
2022-02-01 17:56:05 +00:00
|
|
|
Go back to homepage
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-01-24 17:36:50 +00:00
|
|
|
</div>
|
|
|
|
</section>
|
2022-02-01 17:56:05 +00:00
|
|
|
{% endblock %}
|