Add a Content Policy

This commit is contained in:
Laura Hausmann 2021-02-13 10:02:36 +01:00
parent 02616c5804
commit 81452b164b
Signed by: zotan
GPG Key ID: 5EC1D38FFC321311
3 changed files with 32 additions and 1 deletions

24
Pages/Content.cshtml Normal file
View File

@ -0,0 +1,24 @@
@page
@model ContentModel
@{
ViewData["Title"] = "Content Policy";
}
<h1>@ViewData["Title"]</h1>
<p>Last update: 2021-02-13 10:00 CET</p>
<p>This platform intends to provide video streaming services to users wishing to forego for-profit streaming providers.</p>
<p>To achieve that goal, we need to set some ground rules for allowed content.</p>
<p>The following is a <b>non-exhaustive</b> list of content we do not allow to be streamed on @Program.SiteName:</p>
<ul>
<li>Hate speech, harassment and violence of any kind</li>
<li>Nudity and other sexual or pornographic content</li>
<li>Copyrighted works or content otherwise violating intellectual property</li>
<li>Impersonation, scams, fraud, or otherwise misleading content</li>
<li>Anything else illegal under German or International law</li>
</ul>
<p>We reserve the right to suspend any user repeatedly violating this policy.</p>
<p>In case you believe any of the above are legal in your jurisdiction, please instead <a href="https://git.zotan.services/zotan/rtmpdash">set up your own instance</a>.</p>
<p>If you see any content you believe is in violation of this policy, contact us immediately at <a href="mailto:@Program.AbuseEmail">@Program.AbuseEmail</a></p>

7
Pages/Content.cshtml.cs Normal file
View File

@ -0,0 +1,7 @@
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace RTMPDash.Pages {
public class ContentModel : PageModel {
public void OnGet() { }
}
}

View File

@ -55,7 +55,7 @@
<footer class="border-top footer text-muted">
<div class="container text-center">
<a href="https://git.zotan.services/zotan/rtmpdash" target="_blank">Source Code</a> - <a href="@Program.ServiceAnnouncementUrl" target="_blank">Service Announcements</a> - <a asp-area="" asp-page="/Privacy">Privacy</a> - <a href="mailto:@Program.AbuseEmail">Abuse</a> - <a asp-area="" asp-page="/Credits">Credits and Copyright</a>
<a href="https://git.zotan.services/zotan/rtmpdash" target="_blank">Source Code</a> - <a href="@Program.ServiceAnnouncementUrl" target="_blank">Service Announcements</a> - <a asp-area="" asp-page="/Content">Content Policy</a> - <a asp-area="" asp-page="/Privacy">Privacy</a> - <a href="mailto:@Program.AbuseEmail">Abuse</a> - <a asp-area="" asp-page="/Credits">Credits and Copyright</a>
</div>
</footer>