-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path403.html
81 lines (78 loc) · 2.24 KB
/
403.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Access Blocked</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f8f9fa;
color: #343a40;
text-align: center;
padding: 20px;
}
h1 {
color: #dc3545;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
table {
margin: 20px auto;
border-collapse: collapse;
width: 80%;
max-width: 600px;
}
th, td {
border: 1px solid #dee2e6;
padding: 10px;
text-align: left;
}
th {
background-color: #f1f1f1;
}
</style>
</head>
<body>
<h1>Access Blocked</h1>
<h3>You're seeing this page because you've been blocked.</h3>
<p>If you think this is an error, please <a href="https://github.com/userbradley/documentation.breadnet.co.uk" target="_blank">open an issue on GitHub</a>.</p>
<p>If you're actually a human (and are willing to pinkie promise that fact, then open an issue or disable your VPN. There are no trackers on this site</p>
<table>
<thead>
<tr>
<th>Date</th>
<th>Decision</th>
</tr>
</thead>
<tbody>
<tr>
<td>18th January 2025</td>
<td>Hetzner ranges were scraping my site, so they got blocked</td>
</tr>
</tbody>
</table>
<!-- Matomo -->
<script>
var _paq = window._paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//trace-agent.breadnet.co.uk/";
_paq.push(['setTrackerUrl', u+'matomo.php']);
_paq.push(['setSiteId', '20']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
</body>
</html>