This repository has been archived on 2021-05-18. You can view files and clone it, but cannot push or open issues or pull requests.
website/index.html

171 lines
5.5 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!doctype html>
<html lang="en">
<head>
<title>FediBlock</title>
<meta charset="utf-8">
<meta name="robots" content="noindex, nofollow">
<style>
body
{
max-width: 100ch;
}
p
{
text-indent: 2ch;
margin: 0 auto;
text-align: justify;
}
label
{
display: block;
float: left;
width: 12ch;
text-align: right;
margin-right: 1ch;
}
input[type=text], input[type=url]
{
width: 60ch;
}
input[type=button]
{
padding: 0;
}
input[type=file]
{
margin-left: 10ch;
}
span.optional
{
font-style: italic;
}
p.footer
{
text-align: right;
}
</style>
<link rel="alternate" type="application/rss+xml" title="The newest FediBlock entries. All tags."
href="/rss">
</head>
<body>
<h1>FediBlock</h1>
<p>
<a href="https://fediblock.org/">FediBlock.org</a> ·
<a href="http://mzz6cduobh3oemtlou2sssbr4wteglmcabq5exrln3v7puwegfn4qqyd.onion/">
Onion service</a> (Tor)
</p>
<h2 id="what">What is this?</h2>
<p>
We aim to build a comprehensive list of #FediBlock posts in order to provide it to
especially new instance admins.
</p>
<p>
The idea of this project is to provide a list of bad actor instances in the Fediverse, in
order to enable instance admins to keep their instances clean of those actors without having
to go through endless and incomplete pages of #FediBlock posts.
</p>
<p>
Everyone can submit instances they suggest to block and provide receipts and reasoning.
Instance admins can subscribe to updates and decide for themselves whether they want to block
that instance or not. Those subscriptions can be limited to specific reasons (enables racism,
“free speech champions”, homomisia, no moderation, etc) or for all block suggestions.
</p>
<p>
The intention is to provide safe spaces in the Fediverse. The blocking suggestions should have
reasons like the above mentioned. If you want to suggest something like “The admin is blocking
my instance just because I used the n-word”, this is no place for you and your suggestion
might be deleted.
</p>
<p>
We recognize the work that others put into the #FediBlock hashtag. This is supposed to be an
archive or extension.
</p>
<h3>What are the advantages over the #FediBlock hashtag?</h3>
<ul>
<li>A list of all instances at a glance. Great for pointing admins of new instances to.</li>
<li>You get all block recommendations, not just the ones that federate to your instance.</li>
<li>Every recommendation has at least one receipt attached.</li>
<li>Entries are editable (with a git pull-request).</li>
<li>
Subscribe to the RSS feed to get all new recommendations or subscribe only to specific tags.
</li>
</ul>
<h2 id="list">Blocklist</h2>
<ul>
<li>Look at <a href="/blocklist/">all block recommendations in one page</a>.</li>
<li>
<a href="/rss">Subscribe to all new recommendations via RSS</a>, or<br>
<form method="get" action="/rss">
<label for="tags_rss" style="width: auto;">subscribe only to these tags:</label>
<input type="text" id="tags_rss" name="tags[]" placeholder="tag1,tag2,tag3"
style="width: 42ch;">
<input type="submit">
</form>
</li>
</ul>
<h2 id="contact">Contact</h2>
<p>
You can reach us in the Fediverse at
<a rel="me" href="https://botsin.space/@fediblock_archive">@fediblock_archive@botsin.space</a>.
</p>
<h2 id="suggest">Suggest instance</h2>
<p>
Please make sure to include receipts (hyperlinks or screenshots) for all claims you make. We
don't want trust to be necessary to use this list.
</p>
<form method="post" action="/add" enctype="multipart/form-data">
<label for="instance">Instance:</label>
<input type="text" id="instance" name="instance" placeholder="example.com" required>
<br>
<label for="tags">Tags:</label>
<input type="text" id="tags" name="tags" placeholder="tag1,tag2" autocomplete="on" required>
<!-- <input type="button" id="add_tag" value="" disabled> -->
<br>
<label for="receipts">Receipts:</label>
<input type="url" id="receipts" name="receipts"
placeholder="https://example.com/@user/1234567890,https://example.com/about/more" required>
<!-- <input type="button" id="add_receipt" value="" disabled> -->
<br>
<label for="screenshot1">Screenshots:</label><span class="optional">(optional)</span>
<br>
<input type="file" id="screenshot1" name="screenshots[]" accept="image/*">
<br>
<input type="file" id="screenshot2" name="screenshots[]" accept="image/*">
<br>
<input type="file" id="screenshot3" name="screenshots[]" accept="image/*">
<br>
<input type="file" id="screenshot4" name="screenshots[]" accept="image/*">
<br>
<label for="description">Description:</label><br>
<textarea id="description" name="description" cols="80" rows="20" required></textarea><br>
<input type="submit">
</form>
<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>
</body>
</html>