mirror of
https://github.com/tchartron/blow
synced 2024-11-23 12:53:20 +00:00
15 lines
415 B
HTML
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 %}
|