-
Notifications
You must be signed in to change notification settings - Fork 0
/
429.html
63 lines (47 loc) · 1.72 KB
/
429.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{% extends "base.html" %}
{% block bodyclass %}error{% endblock %}
{% block title %}{{ page_title(_('Too Many Requests')) }}{% endblock %}
{% block site_css %}
{{ super() }}
{% stylesheet 'error-403-alternate' %}
{% endblock %}
{% block content %}
<section id="content" class="text-content">
<div class="wrap">
<section id="content-main" class="full" role="main">
<h1 class="page-title">{{ _('Too Many Requests') }}</h1>
<p>
{% if user.username %}
{{ _("We're sorry %(name)s, you've made too many requests in a short time.",
name=user.username) }}
{% else %}
{{ _("We're sorry, we've received too many requests from your IP address in a short time.") }}
{% endif %}
{{ _("You can try again in about one minute.") }}
</p>
{% block tumbeast %}
<img src="{{ static('img/beast-403.png') }}" alt="" class="beast 403">
{% endblock tumbeast %}
<p>
{% trans content_url='https://developer.mozilla.org/docs/MDN/About#Downloading_content' %}
You may be interested in other ways to <a href="{{content_url}}">download MDN Web Docs content</a>.
{% endtrans %}
</p>
{% block tumbeast_attribution -%}
{% trans %}
<p class="attrib"><small><a href="http://theoatmeal.com/comics/state_web_summer#tumblr" rel="nofollow">Tumbeasts</a> by Matthew Inman of <a href="http://theoatmeal.com" rel="nofollow">The Oatmeal</a></small></p>
{% endtrans %}
{% endblock tumbeast_attribution %}
</section>
</div>
</section>
{% endblock %}
{% block site_js %}
{{ super() }}
{% javascript 'framebuster' %}
{% endblock %}
{% block js %}
<script>
mdn.analytics.trackError('429', String(window.location));
</script>
{% endblock %}