add rules

This commit is contained in:
Kay Faraday 2024-08-03 23:11:50 -07:00
parent 6727c693af
commit 63e439bccc
3 changed files with 33 additions and 2 deletions

View File

@ -1,2 +1,9 @@
index.html: index.j2.html PAGES = index.html rules.html
all: $(PAGES)
clean:
rm $(PAGES)
%.html: %.j2.html base.j2.html
j2 $< > $@ j2 $< > $@

View File

@ -2,7 +2,7 @@
{% block title %}Freak University{% endblock title%} {% block title %}Freak University{% endblock title%}
{% block content %} {% block content %}
<p>Welcome to Freak University! There used to be a public fediverse instance here, but not anymore. However, we are working on restoring some of the affiliated services, and those restored are listed below.</p> <p>Welcome to Freak University! There used to be a public fediverse instance here, but not anymore. However, we are working on restoring some of the affiliated services, and those restored are listed below. <strong>Please read <a href="/rules.html">the rules</a> before using any of these services.</strong></p>
<ul> <ul>
<li><a href="https://ask.freak.university">Freak University Ask</a>, our anonymous question/answer site <li><a href="https://ask.freak.university">Freak University Ask</a>, our anonymous question/answer site
<li>The Freak University <a href="https://lab.freak.university">Computer Lab</a>, our code sharing site <li>The Freak University <a href="https://lab.freak.university">Computer Lab</a>, our code sharing site

View File

@ -1 +1,25 @@
{% extends 'base.j2.html' %} {% extends 'base.j2.html' %}
{% block title %}Freak University Rules{% endblock %}
{% block content %}
<p>As of 2024-08-03. Based on the <a href="https://archive.is/9PoIp">original Freak U fediverse rules as of 2022-08-11</a>.
<ol>
<li>You must be at least 13 years of age or older to use these services. For legal reasons, this refers to your chronological age.
<li>Because there are minors on this site, pornographic/NSFW content is forbidden.
<li>Admitting or planning on breaking the law and soliciting illegal content are not allowed. You will either be warned or permanently banned depending on the severity.
<li>
Respect other users and their backgrounds. Here are some examples of activities that will not be tolerated:
<ol type=a>
<li>Harassment.
<li>Hateful speech
<li>Being transphobic, homophobic, paraphile-phobic, racist, ableist, fascist, or supporting any oppressions in general.
<li>Supporting anti-vaccine rhetoric or ideology.
<li>Suicide baiting (encouraging others to kill themselves).
<li>…And potentially more as we encounter specific cases, but you see the picture.
</ol>
If you break this rule elsewhere, we reserve the right to sanction you locally.
<li>Don't share anyone's personal information without their consent, and delete content about a person should they ask. If you have a problem with another member, take it to them or the mods.
<li>Members with all paraphilias and of all contact stances are permitted. This includes zoophilia, minor attraction, biastophilia, etc. Use the block button if anyone makes you uncomfortable because of this. <strong>Note</strong>: One minor exception to this rule is that you may not be pro-contact for paraphilias that are widely believed to be harmful to act on, such as biastophilia.
<li>Do not use these services to engage in sexual conduct with anyone under the age of 18.
<li>If you are under the age of 18, do not use these services to engage in any sexual conduct at all.
</ol>
{% endblock %}