blob: 58c78b5b1c57ed76a8e287b594cf2c9af4e161f1 (
plain)
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
|
---
import Layout from "./Layout.astro";
---
<Layout
title="Geoblocked"
description="Access to this page is restricted, learn why."
empty
>
<Fragment slot="head-jsonld">
<meta name="robots" content="noindex" />
</Fragment>
<h1>Geo-blocked</h1>
<p>
This page is purposely blocked for users on your region due to ethical
concerns, spam or abuse (or a combination of all these).
</p>
<h2>Blocked countries</h2>
<ul>
<li>(US) United States of America - And colonies</li>
<li>(PR) Puerto Rico</li>
<li>(GU) Guam</li>
<li>(AS) American Samoa</li>
<li>(VI) U.S. Virgin Islands</li>
<li>(MP) Northern Mariana Islands</li>
<br />
<li>(SV) El Salvador</li>
<li>(RU) Russian Federation</li>
<li>(BY) Belarus</li>
<br />
<li>(IL) Israel</li>
<li>(HU) Hungary</li>
<li>(TR) Turkey</li>
<li>(CN) China</li>
<li>(SA) Saudi Arabia</li>
</ul>
<p>
I am open to adding more countries to the list or removing them at any time.
I am aware of many other countries that have committed human rights abuses,
but these are the ones more likely to have users on this website.
</p>
</Layout>
|