diff --git a/Pages/Content.cshtml b/Pages/Content.cshtml new file mode 100644 index 0000000..df5b2ab --- /dev/null +++ b/Pages/Content.cshtml @@ -0,0 +1,24 @@ +@page +@model ContentModel +@{ + ViewData["Title"] = "Content Policy"; +} +

@ViewData["Title"]

+ +

Last update: 2021-02-13 10:00 CET

+

This platform intends to provide video streaming services to users wishing to forego for-profit streaming providers.

+

To achieve that goal, we need to set some ground rules for allowed content.

+

The following is a non-exhaustive list of content we do not allow to be streamed on @Program.SiteName:

+ + +

We reserve the right to suspend any user repeatedly violating this policy.

+ +

In case you believe any of the above are legal in your jurisdiction, please instead set up your own instance.

+ +

If you see any content you believe is in violation of this policy, contact us immediately at @Program.AbuseEmail

\ No newline at end of file diff --git a/Pages/Content.cshtml.cs b/Pages/Content.cshtml.cs new file mode 100644 index 0000000..f081860 --- /dev/null +++ b/Pages/Content.cshtml.cs @@ -0,0 +1,7 @@ +using Microsoft.AspNetCore.Mvc.RazorPages; + +namespace RTMPDash.Pages { + public class ContentModel : PageModel { + public void OnGet() { } + } +} \ No newline at end of file diff --git a/Pages/Shared/_Layout.cshtml b/Pages/Shared/_Layout.cshtml index ccaea7a..884067c 100644 --- a/Pages/Shared/_Layout.cshtml +++ b/Pages/Shared/_Layout.cshtml @@ -55,7 +55,7 @@