blow/templates/404.html
Thomas Chartron 53080f758b update
2021-11-14 14:42:22 +01:00

15 lines
415 B
HTML

{% extends "layout.html" %}
{% block content %}
<div class="flex items-center flex-col md:mt-40">
<h1 class="text-xl text-bold mb-4">
404 Not Found
</h1>
<img class="h-60 w-60" src="{{ config.extra.404.image }}" alt="">
</div>
<!-- Content -->
<div class="flex justify-center text-xl text-bold mt-4">
Sorry, it seems that the content you're looking for was not found ...
</div>
{% endblock content %}