19 lines
438 B
HTML
19 lines
438 B
HTML
{% extends "default.html" %}
|
|
|
|
{% block title %}
|
|
<title>429 Too Many Requests</title>
|
|
{% endblock %}
|
|
|
|
{% block pagetype %}error-429{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row justify-content-center">
|
|
<div class="col-10 col-md-5">
|
|
<div class="text-center px-3 my-8">
|
|
<h1>429</h1>
|
|
<h5>Too Many Requests</h5>
|
|
<p class="text-muted mb-5">Are you hammering the site? Stop that, yo.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|