]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/static/blocked.html
location: Drop old warniing about blocked resources
[ipfire.org.git] / src / templates / static / blocked.html
1 {% extends "../base.html" %}
2
3 {% block title %}{{ _("You have been blocked") }}{% end block %}
4
5 {% block container %}
6 <div class="container">
7 <div class="row justify-content-center mt-5">
8 <div class="col-12 col-md-3 text-center">
9 <span class="fas fa-shield-alt fa-10x p-5"></span>
10 </div>
11
12 <div class="col-12 col-md-5">
13 <h5 class="mb-0">{{ _("Oops") }}</h5>
14 <h1>{{ _("You have been blocked") }}</h1>
15
16 <p>
17 {{ _("Your request has been blocked because your IP address is suspected to spread spam.") }}
18 </p>
19
20 <p>
21 <a href="https://location.ipfire.org/lookup/{{ address }}">
22 {{ _("Click here to find out more about the status of your IP address") }}
23 </a>
24 </p>
25 </div>
26 </div>
27 </div>
28 {% end %}
29
30 {% block footer %}{% end block %}