forked from rDrama/rDrama
1
0
Fork 0
retarD/files/templates/errors/418.html

22 lines
600 B
HTML
Raw Normal View History

2021-07-21 01:12:26 +00:00
{% extends "errors/default.html" %}
{% block title %}
<title>418 I'm A Teapot</title>
{% endblock %}
{% block pagetype %}error-418{% 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-03 14:08:32 +00:00
<img loading="lazy" src="/assets/images/emojis/marseydead.gif">
2021-08-13 00:41:24 +00:00
<pre></pre>
<h1 class="h5">418 I'm A Teapot</h1>
2021-07-21 01:12:26 +00:00
<p class="text-muted mb-5">Sorry, I've been cursed and can't make you coffee right now.</p>
<div><a href="/" class="btn btn-primary">Go to frontpage</a></div>
</div>
</div>
</div>
{% endblock %}