rDrama/files/templates/errors/405.html

22 lines
708 B
HTML
Raw Normal View History

2021-07-21 01:12:26 +00:00
{% extends "default.html" %}
{% block title %}
<title>405 Method Not Allowed</title>
{% endblock %}
{% block pagetype %}error-405{% 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/marseyretard.webp">
2021-08-13 00:41:24 +00:00
<pre></pre>
<h1 class="h5">405 Method Not Allowed</h1>
2021-07-24 20:48:36 +00:00
<p class="text-muted mb-5">idk how anyone gets this error but if you see this, remember to follow @carpathianflorist<BR>the original error text here talked about internet gremlins and wtf</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:48:36 +00:00
{% endblock %}