rDrama/files/templates/errors/404.html

22 lines
614 B
HTML
Raw Normal View History

2021-09-25 23:13:14 +00:00
{% extends "default.html" %}
2021-07-21 01:12:26 +00:00
{% block title %}
<title>404 Page Not Found</title>
{% endblock %}
{% block pagetype %}error-404{% endblock %}
{% block content %}
<div class="row justify-content-center">
<div class="col-10 col-md-5">
<div class="text-center px-3 my-8">
2021-09-29 15:42:28 +00:00
<img loading="lazy" src="/assets/images/emojis/marseyconfused.webp">
2021-08-13 00:41:24 +00:00
<pre></pre>
<h1 class="h5">404 Page Not Found</h1>
2021-07-24 20:47:30 +00:00
<p class="text-muted mb-5">Someone typed something wrong and it was probably you, please do better.</p>
2021-07-21 01:12:26 +00:00
<div><a href="/" class="btn btn-primary">Go to frontpage</a></div>
</div>
</div>
</div>
2021-07-24 20:47:30 +00:00
{% endblock %}