22 lines
579 B
HTML
22 lines
579 B
HTML
{% extends "default.html" %}
|
|
|
|
{% block title %}
|
|
<title>Too many pings</title>
|
|
{% endblock %}
|
|
|
|
{% block pagetype %}Too many pings{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row justify-content-center">
|
|
<div class="col-10 col-md-5">
|
|
<div class="text-center px-3 my-8">
|
|
<img alt=":#marseyrage" loading="lazy" src="/e/marseyrage.webp">
|
|
<pre></pre>
|
|
<h1 class="h5">Too many pings</h1>
|
|
<p class="text-muted mb-5">Max limit is 5 for comments and 50 for posts</p>
|
|
<div><a href="/" class="btn btn-primary">Go to frontpage</a></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|