rDrama/files/templates/errors/404.html

20 lines
588 B
HTML
Raw Normal View History

2021-10-15 14:08:27 +00:00
{% extends "default.html" %}
{% block title %}
<title>404 Page Not Found</title>
{% endblock %}
{% block pagetype %}error-404{% endblock %}
{% block content %}
2021-12-06 21:00:44 +00:00
<div class="col-span-full h-screen flex items-center justify-center">
2021-12-06 21:00:56 +00:00
<div class="md:max-w-xl text-center">
2021-12-12 20:14:30 +00:00
<img loading="lazy" src="/assets/images/emojis/marseyconfused.webp?v=200" class="w-14 h-14 object-contain mb-4">
2021-10-15 14:08:27 +00:00
<h1 class="h5">404 Page Not Found</h1>
2021-12-06 20:59:40 +00:00
<p class="text-gray-500">
Someone typed something wrong and it was probably you, please do better.
</p>
2021-10-15 14:08:27 +00:00
</div>
</div>
{% endblock %}