19 lines
588 B
HTML
19 lines
588 B
HTML
{% extends "default.html" %}
|
|
|
|
{% block title %}
|
|
<title>404 Page Not Found</title>
|
|
{% endblock %}
|
|
|
|
{% block pagetype %}error-404{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="col-span-full h-screen flex items-center justify-center">
|
|
<div class="md:max-w-xl text-center">
|
|
<img loading="lazy" src="/assets/images/emojis/marseyconfused.webp?v=200" class="w-14 h-14 object-contain mb-4">
|
|
<h1 class="h5">404 Page Not Found</h1>
|
|
<p class="text-gray-500">
|
|
Someone typed something wrong and it was probably you, please do better.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|