Add Photo Policy page

This commit is contained in:
Noah Petherbridge 2024-12-02 22:56:46 -08:00
parent 1935b28ee5
commit 6203a973e0
9 changed files with 699 additions and 12 deletions

View File

@ -37,6 +37,7 @@ func New() http.Handler {
mux.HandleFunc("GET /insights", index.Demographics()) mux.HandleFunc("GET /insights", index.Demographics())
mux.HandleFunc("GET /faq", index.StaticTemplate("faq.html")()) mux.HandleFunc("GET /faq", index.StaticTemplate("faq.html")())
mux.HandleFunc("GET /tos", index.StaticTemplate("tos.html")()) mux.HandleFunc("GET /tos", index.StaticTemplate("tos.html")())
mux.HandleFunc("GET /tos/photos", index.StaticTemplate("tos_photos.html")())
mux.HandleFunc("GET /privacy", index.StaticTemplate("privacy.html")()) mux.HandleFunc("GET /privacy", index.StaticTemplate("privacy.html")())
mux.HandleFunc("/contact", index.Contact()) mux.HandleFunc("/contact", index.Contact())
mux.HandleFunc("/login", account.Login()) mux.HandleFunc("/login", account.Login())

View File

@ -630,7 +630,7 @@
it was uploaded. it was uploaded.
</p> </p>
<p> <p>
Please <a href="/tos#explicit-photos">review our Explicit Photos policy</a> Please <a href="/tos/photos#explicit">review our Explicit Photos policy</a>
and remember to correctly mark your new uploads as 'explicit' when they contain sexually and remember to correctly mark your new uploads as 'explicit' when they contain sexually
suggestive content. suggestive content.
</p> </p>

View File

@ -134,6 +134,10 @@
<span class="icon"><i class="fa fa-list"></i></span> <span class="icon"><i class="fa fa-list"></i></span>
<span>Terms of Service</span> <span>Terms of Service</span>
</a> </a>
<a class="navbar-item" href="/tos/photos">
<span class="icon"><i class="fa fa-list"></i></span>
<span>Photo Policy</span>
</a>
<a class="navbar-item" href="/privacy"> <a class="navbar-item" href="/privacy">
<span class="icon"><i class="fa fa-file-shield"></i></span> <span class="icon"><i class="fa fa-file-shield"></i></span>
<span>Privacy Policy</span> <span>Privacy Policy</span>

View File

@ -675,6 +675,11 @@
<h3 id="define-explicit">What is considered "explicit" in photos?</h3> <h3 id="define-explicit">What is considered "explicit" in photos?</h3>
<p>
<strong>New:</strong> for an in-depth answer with examples, please see our new
<a href="/tos/photos#explicit">Photo Policy page!</a>
</p>
<p> <p>
On this website, I make a fairly common distinction between what's a "normal nude" and On this website, I make a fairly common distinction between what's a "normal nude" and
what's an "explicit" photo: what's an "explicit" photo:
@ -702,7 +707,7 @@
</p> </p>
<p> <p>
Please see the <a href="/tos#explicit-photos">Explicit Photos &amp; Sexual Content</a> Please see the <a href="/tos/photos#explicit">Explicit Photos</a>
policy on our <a href="/tos">Terms of Service</a> for some examples when a photo should policy on our <a href="/tos">Terms of Service</a> for some examples when a photo should
be marked as 'explicit.' be marked as 'explicit.'
</p> </p>

View File

@ -385,7 +385,7 @@
</p> </p>
<p> <p>
Follow <a rel="me" href="https://fedi.ckir.net/@nonshy">@nonshy on <i class="fab fa-mastodon"></i> Mastodon</a> Follow <a rel="me" href="https://bsky.app/profile/nonshy.com">@nonshy.com on <i class="fab fa-bluesky"></i> Bluesky</a>
for news, status alerts and reblogs from some of our members on the Fediverse! for news, status alerts and reblogs from some of our members on the Fediverse!
</p> </p>
</div> </div>

View File

@ -6,7 +6,7 @@ A mechanism for users to flag a photo that should be marked as Explicit.
<div class="modal-background"></div> <div class="modal-background"></div>
<div class="modal-content"> <div class="modal-content">
<div class="card"> <div class="card">
<div class="card has-background-info"> <div class="card-header has-background-info">
<p class="card-header-title has-text-light"> <p class="card-header-title has-text-light">
Mark a photo as Explicit Mark a photo as Explicit
</p> </p>
@ -21,6 +21,11 @@ A mechanism for users to flag a photo that should be marked as Explicit.
</div> </div>
<div class="column"> <div class="column">
<p class="help mb-2">
Please review <a href="/tos/photos#explicit" target="_blank">what {{PrettyTitle}} considers to be an <span class="has-text-danger">'Explicit'</span> photo <i class="fa fa-external-link"></i></a>
(and what we consider <em>NOT</em> explicit) for an in-depth list of examples!
</p>
<div class="field"> <div class="field">
<label class="label">What makes this photo explicit?</label> <label class="label">What makes this photo explicit?</label>
<div> <div>
@ -36,7 +41,7 @@ A mechanism for users to flag a photo that should be marked as Explicit.
<input type="radio" <input type="radio"
name="reason" name="reason"
value="It's a close-up dick pic (whether flaccid or erect)"> value="It's a close-up dick pic (whether flaccid or erect)">
It's a close-up dick pic (whether flaccid or erect) It's a close-up dick pic <small>(whether flaccid or erect)</small>
</label> </label>
</div> </div>
<div> <div>
@ -44,7 +49,7 @@ A mechanism for users to flag a photo that should be marked as Explicit.
<input type="radio" <input type="radio"
name="reason" name="reason"
value="It's a hole pic (ass/vagina/spread eagle/etc.)"> value="It's a hole pic (ass/vagina/spread eagle/etc.)">
It's a hole pic (ass/vagina/spread eagle/etc.) It's a hole pic <small>(ass/vagina/spread eagle/etc.)</small>
</label> </label>
</div> </div>
<div> <div>
@ -52,7 +57,7 @@ A mechanism for users to flag a photo that should be marked as Explicit.
<input type="radio" <input type="radio"
name="reason" name="reason"
value="It's sexually suggestive (e.g. they're grabbing their junk or the photo is focused on their junk)"> value="It's sexually suggestive (e.g. they're grabbing their junk or the photo is focused on their junk)">
It's sexually suggestive (e.g. they're grabbing their junk or the photo is focused on their junk) It's sexually suggestive <small>(e.g. they're grabbing their junk or the photo is focused on their junk)</small>
</label> </label>
</div> </div>
<div> <div>
@ -60,10 +65,10 @@ A mechanism for users to flag a photo that should be marked as Explicit.
<input type="radio" <input type="radio"
name="reason" name="reason"
value="It's sexually explicit (e.g. masturbation, sexual activity, porn)"> value="It's sexually explicit (e.g. masturbation, sexual activity, porn)">
It's sexually explicit (e.g. masturbation, sexual activity, porn) It's sexually explicit <small>(e.g. masturbation, sexual activity, porn)</small>
</label> </label>
</div> </div>
<div class="columns is-mobile is-gapless"> <div class="columns is-mobile is-gapless mt-1">
<div class="column is-narrow mr-2"> <div class="column is-narrow mr-2">
<label class="checkbox"> <label class="checkbox">
<input type="radio" <input type="radio"

View File

@ -405,7 +405,7 @@
</p> </p>
<p> <p>
Please review <a href="/tos#explicit-photos">what {{.Title}} considers an 'Explicit' photo</a> Please review <a href="/tos/photos#explicit" target="_blank">what {{.Title}} considers an 'Explicit' photo</a>
and if this photo fits the description, <strong>please</strong> leave this photo with the and if this photo fits the description, <strong>please</strong> leave this photo with the
'Explicit' box checked, below. 'Explicit' box checked, below.
</p> </p>
@ -448,8 +448,10 @@
<p class="help"> <p class="help">
Mark this box if this photo contains any explicit content, including an Mark this box if this photo contains any explicit content, including an
erect penis, close-up of genitalia, or any depiction of sexual activity. erect penis, close-up of genitalia, or any depiction of sexual activity.
Use your best judgment. "Normal nudes" such as full body nudes in a Use your best judgment.<br><br>
non-sexual context do not need to check this box. Please see
<a href="/tos/photos#explicit" target="_blank">what {{PrettyTitle}} considers to be an Explicit photo <i class="fa fa-external-link"></i></a>
on our <a href="/tos/photos" target="_blank">Photo Policy</a> page.
</p> </p>
{{end}} {{end}}
</div> </div>

View File

@ -298,6 +298,10 @@
<h1 id="acceptable-photo-policy">Acceptable Photo Policy <a href="#acceptable-photo-policy" class="fa fa-paragraph is-size-6"></a></h1> <h1 id="acceptable-photo-policy">Acceptable Photo Policy <a href="#acceptable-photo-policy" class="fa fa-paragraph is-size-6"></a></h1>
<p>
<strong><em>See also:</em></strong> the <a href="/tos/photos">{{PrettyTitle}} Photo Policy</a> for an in-depth list of Do's, Don't's and examples.
</p>
<h3 id="self-photos-only">All photos uploaded to your profile page must contain YOU in them <a href="#self-photos-only" class="fa fa-paragraph is-size-6"></a></h3> <h3 id="self-photos-only">All photos uploaded to your profile page must contain YOU in them <a href="#self-photos-only" class="fa fa-paragraph is-size-6"></a></h3>
<p> <p>
@ -371,6 +375,10 @@
examples listed below, you do not need to tag your picture as "Explicit." examples listed below, you do not need to tag your picture as "Explicit."
</p> </p>
<p>
See also: the <a href="/tos/photos">{{PrettyTitle}} Photo Policy</a> for an in-depth list of Do's, Don't's and examples.
</p>
<h3 id="explicit-photos">Explicit Photos &amp; Sexual Content <a href="#explicit-photos" class="fa fa-paragraph is-size-6"></a></h3> <h3 id="explicit-photos">Explicit Photos &amp; Sexual Content <a href="#explicit-photos" class="fa fa-paragraph is-size-6"></a></h3>
<p> <p>
@ -416,6 +424,10 @@
section for a list of Prohibited Content. section for a list of Prohibited Content.
</p> </p>
<p>
See also: the <a href="/tos/photos">{{PrettyTitle}} Photo Policy</a> for an in-depth list of Do's, Don't's and examples.
</p>
<h3 id="prohibited-content">Prohibited Content <a href="#prohibited-content" class="fa fa-paragraph is-size-6"></a></h3> <h3 id="prohibited-content">Prohibited Content <a href="#prohibited-content" class="fa fa-paragraph is-size-6"></a></h3>
<p> <p>

View File

@ -0,0 +1,658 @@
{{define "title"}}{{.Title}} Photo Policy{{end}}
{{define "content"}}
<div class="block">
<section class="hero is-light is-bold">
<div class="hero-body">
<div class="container">
<h1 class="title">
{{PrettyTitle}}
Photo Policy
</h1>
<h2 class="subtitle">
Do's, Don't's, and Examples
</h2>
</div>
</div>
</section>
</div>
<div class="block p-4">
<div class="content">
<p>
This page will briefly summarize the photo policy of the {{PrettyTitle}} website: what
sorts of photos are allowed, which ones should be tagged as <span class="has-text-danger">'Explicit'</span>
and what sort of content is <strong>not allowed</strong> to be shared on your photo gallery, the chat room
or forums, or broadcast on your webcam.
</p>
<h3>Table of Contents</h3>
<ul>
<li>
<a href="#gallery">
<i class="fa fa-image mr-2"></i> On Your Photo Gallery
</a>
<ul>
<li>
<a href="#avatar">Your Default Profile Picture</a>
</li>
<li>
<a href="#acceptable">Acceptable Gallery Photos</a>
</li>
<li>
<a href="#explicit">
When to Mark a Photo as <span class="has-text-danger">'Explicit' <i class="fa fa-fire"></i></span>
</a>
<ul>
<li>
<a href="#not-explicit">
Exceptions: what is NOT 'Explicit' content?
</a>
</li>
</ul>
</li>
</ul>
</li>
<li>
<a href="#chat">
<i class="fa fa-message mr-2"></i> On the Chat Room
</a>
<ul>
<li>
<a href="#chat-photos">Photo Channels</a>
</li>
<li>
<a href="#webcam">Webcam Policy</a>
</li>
</ul>
</li>
<li>
<a href="#forum">
<i class="fa fa-comments mr-1"></i> On the Forums
</a>
<ul>
<li>
<a href="#forum-explicit">Explicit Photos on the Forums</a>
</li>
</ul>
</li>
<li>
<a href="#prohibited">
<i class="fa fa-ban has-text-danger mr-1"></i>
Prohibited Content
</a>
</li>
</ul>
<hr>
<h1 id="gallery">
<i class="fa fa-image mr-2"></i> On Your Photo Gallery
<a href="#gallery" class="fa fa-paragraph is-size-6"></a>
</h1>
<p>
This section governs the acceptable photo policy for member photo galleries (the ones that
you upload to your profile page, and which may be visible on the <a href="/photo/gallery">Site Gallery</a>).
</p>
<h2 id="avatar">
Your Default Profile Picture
<a href="#avatar" class="fa fa-paragraph is-size-6"></a>
</h2>
<p>
Your default profile picture is the <strong>square cropped avatar</strong> that appears at the
top of your profile page and it is widely visible across many pages on the {{PrettyTitle}} website:
including next to your name on the chat room, on your forum posts and comments, on your card on the
Member Directory or on friend requests you send to others.
</p>
<p>
As such, your <strong>default profile picture</strong> has the following <strong>special rules:</strong>
</p>
<dl>
<dt>
<i class="fa fa-check has-text-success mr-1"></i>
It <strong>must show your face.</strong> 🧑
</dt>
<dd>
<ul class="my-2 ml-2">
<li class="mb-1">
The {{PrettyTitle}} administrators need to see your face so it can be cross checked with your
<a href="/faq#certification-faqs">Certification Photo</a>.
</li>
<li class="mb-1">
You MAY include a partially cropped face (e.g. showing only your mouth and nose) <strong>BUT</strong>
you must have a full and clear face picture <em>somewhere</em> on your Photo Gallery for the
administrators to see.
</li>
</ul>
</dd>
<dt>
<i class="fa fa-ban has-text-danger mr-1"></i>
It <strong>must NOT be <span class="has-text-danger">Explicit <i class="fa fa-fire"></i></span></strong>
</dt>
<dd>
<ul class="my-2 ml-2">
<li class="mb-1">
Profile pictures are widely displayed on many parts of the site, where the "Explicit content opt-in"
feature is not always available.
</li>
<li class="mb-1">
As such, members who do NOT want to see 'explicit' content would have no way NOT to see your profile picture.
</li>
<li class="mb-1">
So, your default profile picture MUST NOT be a close-up shot of your junk or depict sexually explicit content.
</li>
<li>
If you have a dick and it's in your profile picture, your <strong>face must be too</strong> and your dick
must NOT be erect or even half erect!
</li>
</ul>
</dd>
<dt>
<i class="fa fa-check has-text-success mr-1"></i>
It <strong>MAY</strong> be marked as "Friends-only" or "Private"
</dt>
<dd>
<ul class="my-2 ml-2">
<li class="mb-1">
If you are concerned about other {{PrettyTitle}} members seeing your face, you MAY set your default
profile picture to "Friends-only" or "Private."
</li>
<li class="mb-1">
A "Friends-only" photo will display as a
<img src="/static/img/shy-friends.png" width="16" height="16" alt="">
yellow placeholder avatar on the Chat Room, and to people who you are not friends with.
</li>
<li>
A "Private" photo will display as a
<img src="/static/img/shy-private.png" width="16" height="16" alt="">
pink placeholder avatar on the Chat Room, and to people for whom you did not grant access to your private photos.
</li>
</ul>
</dd>
</dl>
<hr>
<h2 id="acceptable">
Acceptable Gallery Photos
<a href="#acceptable" class="fa fa-paragraph is-size-6"></a>
</h2>
<p>
The following kinds of photos are <strong>allowed</strong> on your Photo Gallery:
</p>
<dl>
<dt>
<i class="fa fa-check has-text-success mr-1"></i>
<strong>Pictures of Yourself</strong>
🤳
</dt>
<dd>
<ul class="my-2 ml-2">
<li>
If <strong>other people</strong> appear in your picture with you, be sure you have their permission
to appear on your {{PrettyTitle}} gallery!
</li>
</ul>
</dd>
<dt class="mb-2">
<i class="fa fa-check has-text-success mr-1"></i>
<strong>Clothed pictures OK</strong>
</dt>
<dt>
<i class="fa fa-check has-text-success mr-1"></i>
<strong>Nude pictures OK</strong>
</dt>
<dd>
<ul class="my-2 ml-2">
<li class="mb-1">
A flaccid penis is OK. If erect or half chub, <a href="#explicit">mark it Explicit.</a> <i class="fa fa-turn-down"></i>
</li>
<li class="mb-1">
A butt is OK. But if spread eagle, <a href="#explicit">mark it Explicit.</a> <i class="fa fa-turn-down"></i>
</li>
<li class="mb-1">
Breasts are OK. But if the picture is zoomed and focused <em>just</em> on the breasts, <a href="#explicit">mark it Explicit.</a> <i class="fa fa-turn-down"></i>
</li>
<li>
If the picture is a close-up shot of your genitalia, e.g. without ~80% of your full body in frame, <a href="#explicit">mark it Explicit!</a> <i class="fa fa-turn-down"></i>
</li>
</ul>
</dd>
<dt>
<i class="fa fa-question has-text-warning mr-1"></i>
<strong>Some artwork or hobby pictures are OK</strong>
</dt>
<dd>
<ul class="my-2 ml-2">
<li class="mb-1">
If you are an artist (like a painter or sculpter) you MAY show off some of your work
on your personal gallery page.
</li>
<li class="mb-1">
However, you <strong>must</strong> have several real pictures of yourself <strong>on Public</strong>
that outnumber the unrelated pictures of your hobbies.
</li>
<li>
<i class="fa fa-ban has-text-danger mr-1"></i>
Exceptions: photography or A.I. generated pictures do not count under this rule. Sharing an impersonal
picture of a landscape or nature scene is <strong>not</strong> OK.
</li>
</ul>
</dd>
</dl>
<hr>
<h2 id="explicit">
When to Mark a Photo as <span class="has-text-danger">'Explicit' <i class="fa fa-fire"></i></span>
<a href="#explicit" class="fa fa-paragraph is-size-6"></a>
</h2>
<p>
The <span class="has-text-danger">'Explicit'</span> label is reserved for content which is sexually explicit
or suggestive in nature. Not all nudists <em>want</em> to see sexual or pornographic content, and the <em>default</em>
experience of the {{PrettyTitle}} site should keep all the Explicit content hidden away until a member opts-in to
see it.
</p>
<p>
You are free to show off your horny side on your Photo Gallery, but <strong>please</strong> be sure to mark
your pictures as 'Explicit' when they depict sexually charged content.
</p>
<p>
The following features of a photo will require it to be marked as 'Explicit':
</p>
<dl>
<dt>
<i class="fa fa-fire has-text-danger mr-1"></i>
<strong>An erect or "half chub" penis 🍆</strong>
</dt>
<dd>
<ul class="my-2 ml-2">
<li class="mb-1">
The majority of our members are men, so this rule is listed first.
</li>
<li>
If you are erect or even half erect -- if your penis is defying the downward force of gravity -- mark it as 'Explicit.'
</li>
</ul>
</dd>
<dt>
<i class="fa fa-fire has-text-danger mr-1"></i>
<strong>A close-up picture of your genitals</strong>
</dt>
<dd>
<ul class="my-2 ml-2">
<li class="mb-1">
A picture is considered "close-up" if it is centered on your junk, e.g. where the picture spans only from your stomach
to your thighs or it is similarly centered on your breasts.
</li>
<li class="mb-1">
Even if your 🍆 dick is flaccid, it is 'Explicit' if your dick is the sole focus of the picture.
</li>
<li class="mb-1">
A close-up 🍑 butt picture or female-presenting breasts are also to be marked as 'Explicit,' even though
if these features appeared on a full-body nude pic (and not in a sexual context) they would normally
<em>not</em> need to be marked as Explicit.
</li>
<li>
<i class="fa fa-info-circle has-text-warning mr-1"></i>
Exception: if the picture contains ~90% of your full body (e.g., with only your face cropped out) and
(if you have one) your penis is flaccid, e.g. where it <em>would</em> otherwise be a normal, non-sexual,
full-body nude but only your face is hidden, it does <strong>NOT</strong> need to be marked as Explicit
under this rule.
</li>
</ul>
</dd>
<dt>
<i class="fa fa-fire has-text-danger mr-1"></i>
<strong>Any "spread eagle" or hole picture</strong>
</dt>
<dd>
<ul class="my-2 ml-2">
<li class="mb-1">
While a butt picture is OK (when not the close-up focus of the picture), if you are spreading cheek and
showing hole, mark it 'Explicit!'
</li>
<li class="mb-1">
If you have a vulva and it is spread open and exposed, mark it 'Explicit!'
</li>
<li>
<i class="fa fa-ban has-text-danger mr-1"></i>
<strong class="has-text-danger">Prohibited:</strong>
gaping hole pictures where we can see all the way inside you are too spicy for {{PrettyTitle}}!
Please see the <a href="#prohibited">Prohibited Content</a> section below. <i class="fa fa-turn-down"></i>
</li>
</ul>
</dd>
<dt>
<i class="fa fa-fire has-text-danger mr-1"></i>
<strong>Sexually suggestive pictures</strong>
</dt>
<dd>
<ul class="my-2 ml-2">
<li class="mb-1">
If you are touching or holding onto your junk, it's Explicit!
</li>
<li class="mb-1">
If you are posed in a sexually enticing way (for example, pointing a finger at your junk), it's Explicit!
</li>
<li class="mb-1">
If you are dressed in sexually enticing clothing, such as lingerie or mesh net clothing, it's Explicit!
</li>
<li>
If your junk is the central focus of the picture, e.g. the picture was shot from a low angle looking up
your body where your junk is front &amp; center, it's Explicit!
</li>
</ul>
</dd>
<dt>
<i class="fa fa-fire has-text-danger mr-1"></i>
<strong>Sexually explicit pictures</strong>
</dt>
<dd>
<ul class="my-2 ml-2">
<li class="mb-1">
Masturbation or sex toys (mild lifestyle devices such as chastity cages or piercings not included - see
the execeptions below).
</li>
<li class="mb-1">
Bodily fluids, such as semen, precum or pee. Note: only solo watersports are tolerated - peeing onto or
into someone else is <a href="#prohibited">Prohibited.</a> <i class="fa fa-turn-down"></i>
</li>
<li>
Sexual activity involving a partner; what a reasonable nudist would label as pornography.
</li>
</ul>
</dd>
</dl>
<h3 id="not-explicit">
Exceptions: what is NOT 'Explicit' content?
<a href="#not-explicit" class="fa fa-paragraph is-size-6"></a>
</h3>
<p>
At {{PrettyTitle}}, we generally define 'Explicit' content as anything that contains sexually suggestive
or explicit material. We feel that most nudists generally have a good instinct on when something is sexually
explicit, but there are some grey areas at the boundary of explicit and non-explicit content where not everyone
agrees.
</p>
<p>
At {{PrettyTitle}}, we consider a photo to <strong>NOT</strong> require the 'Explicit' label in the following cases:
</p>
<dl>
<dt>
<i class="fa fa-check has-text-success mr-1"></i>
<strong>Mild lifestyle devices are OK</strong>
</dt>
<dd>
<ul class="my-2 ml-2">
<li class="mb-1">
These include chastity cages, genital piercings, cock rings (when worn around a flaccid penis) and
similar jewelry or devices.
</li>
<li class="mb-1">
<strong>If</strong> the photo would not otherwise be classified as 'Explicit' apart from the mild
lifestyle device, then it does NOT need to be tagged as 'Explicit.'
</li>
<li>
For example: a full-body nude pic of a man wearing a chastity cage or a cock ring around his flaccid
penis, if shot in a neutral, non-sexual environment, and there is nothing sexually charged about the
picture <em>except</em> that he is wearing an accessory on his junk, then it is NOT an 'Explicit'
photo.
</li>
</ul>
</dd>
<dt>
<i class="fa fa-check has-text-success mr-1"></i>
<strong>Cross-dressing pictures are OK</strong>
</dt>
<dd>
<ul class="my-2 ml-2">
<li class="mb-1">
Some members of {{PrettyTitle}} are trans or non-binary and may post photos wearing clothing that
is atypical of their perceived gender. This does NOT mean that these photos are sexual or that
they should be marked as Explicit!
</li>
<li class="mb-1">
If the clothing is sexually suggestive, such as lingerie or mesh net clothing, intended to be
sexually provocative: <em>then</em> that does fall under the Explicit photo policy as usual.
</li>
<li>
If they are just ordinary clothes and the picture is not otherwise framed in a sexual context,
it's NOT explicit!
</li>
</ul>
</dd>
</dl>
<hr>
<h1 id="chat">
<i class="fa fa-message mr-2"></i> On the Chat Room
<a href="#chat" class="fa fa-paragraph is-size-6"></a>
</h1>
<p>
The chat room shares the same Acceptable Photo Policy as your personal photo gallery, and this
applies <strong>both</strong> to photos shared on the chat room <strong>and</strong> the content
of your webcam when you are broadcasting.
</p>
<h2 id="chat-photos">
Photo Channels
<a href="#chat-photos" class="fa fa-paragraph is-size-6"></a>
</h2>
<p>
Please respect the acceptable photo policy of each of the public chat room channels, and only
share pictures in the appropriate channels.
</p>
<ul>
<li>
On channel: 📸 <strong>Nudes</strong> 😇
<ul>
<li>Only NON-Explicit, normal nudes are to be shared on this channel.</li>
<li>If the picture were posted on your Photo Gallery and didn't need to be marked as Explicit, it is OK to share on this channel.</li>
<li>Please see the <a href="#explicit">Explicit Photo Guidelines</a> <i class="fa fa-turn-up"></i> above.</li>
</ul>
</li>
<li>
On channel: 📸 <strong>Lewds</strong> 😈
<ul>
<li>This channel is for sexual, or 'lewd' pictures.</li>
<li>If the picture were posted on your Photo Gallery and it would've required the Explicit label, it is OK to share on this channel.</li>
<li>Please see the <a href="#explicit">Explicit Photo Guidelines</a> <i class="fa fa-turn-up"></i> above.</li>
<li>Note: 'normal nudes' are of course OK to share on this channel as well.</li>
</ul>
</li>
</ul>
<h2 id="webcam">
Webcam Policy
<a href="#webcam" class="fa fa-paragraph is-size-6"></a>
</h2>
<p>
On the {{PrettyTitle}}, you can broadcast your webcam and be watched by others on the chat room (and watch
them back, if you want!)
</p>
<p>
Just like your photo gallery, your webcam stream can be marked as 'Explicit' which will let other people on
chat know what to expect before they click to watch your camera. You can use the 'Explicit' button at the top
of the chat page to toggle your camera's status.
</p>
<dl>
<dt>
<i class="fa fa-fire has-text-danger mr-1"></i>
<strong>Please mark your webcam as <span class="has-text-danger">'Explicit'</span> when:</strong>
</dt>
<dd>
<ul class="my-2 ml-2">
<li class="mb-1">
You are masturbating or being sexually explicit on camera.
</li>
<li>
Please see the <a href="#explicit">Explicit Photo Guidelines</a> <i class="fa fa-turn-up"></i> above.
All of the things that would classify a Gallery Photo to be 'Explicit' also apply to your webcam!
</li>
</ul>
</dd>
</dl>
<hr>
<h1 id="forum">
<i class="fa fa-comments mr-1"></i> On the Forums
<a href="#forum" class="fa fa-paragraph is-size-6"></a>
</h1>
<p>
Some of the <a href="/forum">Forums</a> permit photos to be uploaded onto the comment threads.
</p>
<p>
Please be mindful about <strong>what</strong> forum you are posting in. Some forum threads may be about a specific
topic, or a specific challenge, and the <a href="#acceptable">"Self Pictures Only"</a> rule may not always apply.
</p>
<h2 id="forum-explicit">
Explicit Photos on the Forums
<a href="#forum-explicit" class="fa fa-paragraph is-size-6"></a>
</h2>
<p>
Not every thread on the forum <strong>wants</strong> sexually explicit photos to be shared. By default, you
should assume that you will <strong>NOT</strong> share an explicit photo on the forum.
</p>
<p>
The following are cases where it is OK to share an explicit photo on the forums:
</p>
<ul>
<li>
When the <strong>forum itself</strong> is marked as <span class="has-text-danger"><i class="fa fa-fire mr-1"></i> Explicit</span>
<ul>
<li>
For example: the <a href="/f/exhibitionists">Exhibitionist's Corner</a> or <a href="/f/lewds">Sexy Shots</a>.
Note: if you did not <a href="/settings#prefs">opt-in to see explicit content</a>, these forums won't be visible to you.
</li>
<li>
On the forum home page, Explicit forums will display with an <span class="tag is-danger is-light"><i class="fa fa-fire mr-1"></i> Explicit</span> badge.
</li>
</ul>
</li>
<li>
When the <strong>topic thread</strong> is marked as <span class="has-text-danger"><i class="fa fa-fire mr-1"></i> Explicit</span>
<ul>
<li>
For example: even on a non-explicit forum such as <a href="/f/nudes">Nudist Photos</a>, someone may create a new discussion
thread and they can mark <em>that</em> thread as being Explicit in an otherwise non-explicit photo.
</li>
<li>
These topic threads will show a <span class="tag is-danger is-light"><i class="fa fa-fire mr-1"></i> NSFW</span> ("not safe for work") badge.
</li>
<li>
Photos shared in Explicit threads are permitted to be Explicit.
</li>
<li>
Note: if you did not <a href="/settings#prefs">opt-in to see explicit content</a>, you will not see these threads.
</li>
</ul>
</li>
<li>
<strong>Pro Tip:</strong> to help you out, the forum will remind you before you upload a photo whether the current thread
you are looking at does not want Explicit content. Please keep an eye out for this notice, which will appear just above the
photo upload box, when sharing a picture on the forums!
</li>
</ul>
<hr>
<h1 id="prohibited">
<i class="fa fa-ban has-text-danger mr-1"></i>
Prohibited Content
<a href="#prohibited" class="fa fa-paragraph is-size-6"></a>
</h1>
<p>
The following sorts of content are <strong>universally prohibited</strong> across the entire {{PrettyTitle}} website.
</p>
<dl>
<dt>
<i class="fa fa-ban has-text-danger mr-1"></i>
<strong>Illegal content</strong> according to the laws in the United States or in any of the 50 states therein.
This includes, but is not limited to:
</dt>
<dd>
<ul class="my-2 ml-2">
<li>Bestiality, or sexual acts involving animals.</li>
<li>Child sexually abusive material (CSAM), including fantasy chat (even in text form) involving a minor under the age of 18.</li>
<li>ANY nude photo depicting a minor person under the age of 18.</li>
<li>ANY depictions or fantasies involving rape or sexual violence.</li>
<li>ANY nude or sexual content of another person shared without their consent ("revenge porn")</li>
<li>ANY depiction of physical violence or graphical gore (sexual or otherwise).</li>
<li>ANY depiction of illegal drugs or federally controlled substances, including but not limited to meth, heroin, cocaine, chloroform or other harmful substance abuse.</li>
</ul>
</dd>
<dt>
<i class="fa fa-ban has-text-danger mr-1"></i>
<strong>Extreme or commonly offensive content</strong>, including but not limited to:
</dt>
<dd>
<ul class="my-2 ml-2">
<li>Watersports (peeing onto or into another person -- solo content is OK).</li>
<li>Scat, or any visual depiction of obviously apparent fecal matter.</li>
<li>Prolapsed rectum, anal fisting, gaping hole pics where we can see all the way inside your body.</li>
<li>Blood play, breath play, or other dangerous activity.</li>
<li>Other such content that the average person would consider to be shocking or revolting.</li>
</ul>
</dd>
<dt>
<i class="fa fa-ban has-text-danger mr-1"></i>
<strong>NO pictures of children, period!</strong>
</dt>
<dd>
<ul class="my-2 ml-2">
<li>This is an adult website and ALL people depicted on it MUST be of legal age (18 years or older).</li>
<li>Do NOT upload ANY picture that includes a minor -- clothed or otherwise!</li>
<li>Do NOT upload any picture of YOURSELF from when you were under 18, anywhere!</li>
</ul>
</dd>
</dl>
<p>
See also: the <a href="/tos#prohibited-content">Terms of Service "Prohibited Content" section.</a>
</p>
</div>
</div>
{{end}}