2020-06-29 01:55:29 +02:00
|
|
|
|
<!doctype html>
|
2020-10-17 06:54:54 +02:00
|
|
|
|
<html lang="en">
|
2020-06-29 01:55:29 +02:00
|
|
|
|
<head>
|
2020-10-14 05:48:56 +02:00
|
|
|
|
<title>FediBlock</title>
|
2020-10-17 06:54:54 +02:00
|
|
|
|
<meta charset="utf-8">
|
2020-07-04 07:25:55 +02:00
|
|
|
|
<meta name="robots" content="noindex, nofollow">
|
2020-06-29 01:55:29 +02:00
|
|
|
|
<style>
|
2020-07-04 07:25:18 +02:00
|
|
|
|
label
|
|
|
|
|
{
|
|
|
|
|
display: block;
|
|
|
|
|
float: left;
|
|
|
|
|
width: 11ch;
|
|
|
|
|
text-align: right;
|
|
|
|
|
margin-right: 1ch;
|
|
|
|
|
}
|
|
|
|
|
input[type=text], input[type=url]
|
|
|
|
|
{
|
|
|
|
|
width: 60ch;
|
|
|
|
|
}
|
|
|
|
|
input[type=button]
|
|
|
|
|
{
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
span.optional
|
|
|
|
|
{
|
|
|
|
|
font-style: italic;
|
|
|
|
|
}
|
2020-10-14 11:11:48 +02:00
|
|
|
|
p.footer
|
|
|
|
|
{
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
2020-06-29 01:55:29 +02:00
|
|
|
|
</style>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<h1>FediBlock</h1>
|
|
|
|
|
|
|
|
|
|
<h2>What is this?</h2>
|
2020-10-14 05:48:56 +02:00
|
|
|
|
|
|
|
|
|
<p>This is a central blocklist for the Fediverse.</p>
|
2020-06-29 01:55:29 +02:00
|
|
|
|
|
2020-07-02 09:51:31 +02:00
|
|
|
|
<h2>Blocklist</h2>
|
|
|
|
|
|
2020-07-14 17:50:40 +02:00
|
|
|
|
<ul>
|
2020-10-14 05:48:56 +02:00
|
|
|
|
<li><a href="/blocklist/">HTML list</a> – All instances in one page.</li>
|
2020-10-17 01:48:01 +02:00
|
|
|
|
<li><a href="/rss">RSS feed</a> – Subscribe to new entries.<a href="#fn1">¹</a></li>
|
2020-07-14 17:50:40 +02:00
|
|
|
|
</ul>
|
2020-07-02 09:51:31 +02:00
|
|
|
|
|
2020-10-17 01:48:01 +02:00
|
|
|
|
<section>
|
|
|
|
|
<p id="fn1">
|
|
|
|
|
¹ You can also subscribe to specific tags only, for example with the URL
|
2020-10-17 03:17:59 +02:00
|
|
|
|
<code>https://fediblock.org/rss?tags[]=racism&tags[]=homomisia</code>. The webinterface for
|
2020-10-17 01:48:01 +02:00
|
|
|
|
that is not implemented yet. We'd be happy about a
|
|
|
|
|
<a href="https://schlomp.space/FediBlock/website">pull request</a> if you want to help out.
|
|
|
|
|
</p>
|
|
|
|
|
</section>
|
|
|
|
|
|
2020-10-14 05:48:56 +02:00
|
|
|
|
<h2>Suggest instance</h2>
|
|
|
|
|
|
2020-06-29 21:09:48 +02:00
|
|
|
|
<form method="post" action="/add" enctype="multipart/form-data">
|
2020-06-29 01:55:29 +02:00
|
|
|
|
<label for="instance">Instance:</label>
|
2020-07-02 06:29:09 +02:00
|
|
|
|
<input type="text" id="instance" name="instance" placeholder="example.com" autofocus required>
|
|
|
|
|
<br>
|
2020-06-29 01:55:29 +02:00
|
|
|
|
|
|
|
|
|
<label for="tags">Tags:</label>
|
|
|
|
|
<input type="text" id="tags" name="tags" placeholder="tag1,tag2" autocomplete="on" required>
|
2020-10-14 05:40:59 +02:00
|
|
|
|
<!-- <input type="button" id="add_tag" value="➕" disabled> -->
|
|
|
|
|
<br>
|
2020-06-29 01:55:29 +02:00
|
|
|
|
|
|
|
|
|
<label for="receipts">Receipts:</label>
|
2020-07-02 06:29:09 +02:00
|
|
|
|
<input type="url" id="receipts" name="receipts"
|
2020-10-14 05:40:59 +02:00
|
|
|
|
placeholder="https://example.com/@user/1234567890,https://example.com/about/more" required>
|
|
|
|
|
<!-- <input type="button" id="add_receipt" value="➕" disabled> -->
|
|
|
|
|
<br>
|
2020-06-29 01:55:29 +02:00
|
|
|
|
|
2020-06-29 21:09:48 +02:00
|
|
|
|
<label for="screenshot">Screenshot:</label>
|
2020-07-02 11:15:15 +02:00
|
|
|
|
<input type="file" id="screenshot" name="screenshot" accept="image/*">
|
2020-06-30 03:12:15 +02:00
|
|
|
|
<span class="optional">(optional)</span><br>
|
2020-06-29 21:09:48 +02:00
|
|
|
|
|
2020-06-29 01:55:29 +02:00
|
|
|
|
<label for="description">Description:</label><br>
|
|
|
|
|
<textarea id="description" name="description" cols="80" rows="20" required></textarea><br>
|
|
|
|
|
|
|
|
|
|
<input type="submit">
|
|
|
|
|
</form>
|
2020-10-14 11:11:48 +02:00
|
|
|
|
|
|
|
|
|
<p class="footer">
|
|
|
|
|
<a href="https://schlomp.space/FediBlock">Sourcecode</a> licensed under the
|
|
|
|
|
<a href="https://www.gnu.org/licenses/agpl-3.0.html">AGPL-3.0-only</a>.
|
|
|
|
|
</p>
|
2020-06-29 01:55:29 +02:00
|
|
|
|
</body>
|
|
|
|
|
</html>
|