fix stuff + add stuff

This commit is contained in:
ashley 2025-10-11 15:07:46 +02:00
parent f15ee011c4
commit 70aa3567f7

124
html/terms.ejs Normal file
View File

@ -0,0 +1,124 @@
<!--
This Source Code Form is subject to the terms of the GNU General Public License:
Copyright (C) 2021-2025 Poke (https://codeberg.org/ashley/poke)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 3 of the License,
or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see https://www.gnu.org/licenses/.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Poke — Terms & Policies</title>
<meta name="viewport" content="width=device-width,initial-scale=1,viewport-fit=cover" />
<meta property="og:type" content="website">
<meta property="og:title" content="Poke Project — Terms & Policies">
<meta property="og:image" content="/static/poke.webp">
<meta name="twitter:card" content="summary_large_image">
<link href="/css/yt-ukraine.svg?v=7" rel="icon">
<style>
@font-face {
src: url("https://p.poketube.fun/https://cdn.glitch.global/43b6691a-c8db-41d4-921c-8cf6aa0d9108/robotoflex.ttf?v=16683434286881");
font-family: "PokeTube Flex";
font-style: normal;
font-stretch: 1% 800%;
font-display: swap;
}
*,*::before,*::after{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
font-family:"poketube flex",sans-serif;
line-height:1.6;
color:#eaeaea;
background:
radial-gradient(1200px 600px at 0% 0%,#0ea5e9 0%,#0ea5e900 60%),
radial-gradient(1000px 700px at 100% 0%,#8b5cf6 0%,#8b5cf600 65%),
radial-gradient(1000px 700px at 0% 100%,#14b8a6 0%,#14b8a600 65%),
#0b0b0b;
}
a{color:#7dd3fc;text-decoration:none}
a:hover{text-decoration:underline}
.wrap{max-width:980px;margin:0 auto;padding:20px}
header.site{
position:sticky;top:0;z-index:10;
background:rgba(17,17,18,.8);
backdrop-filter:blur(8px);
border-bottom:1px solid #232323;
}
.nav-row{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:10px 16px}
.brand{display:inline-flex;align-items:center;gap:10px;color:#fff;font-weight:800;text-decoration:none}
.brand img{height:32px}
h1{font-size:2.6rem;font-weight:900;margin:20px 0 8px 0;letter-spacing:.2px}
h2{font-size:1.5rem;font-weight:800;margin:20px 0 6px 0;color:#f0f6ff}
p{margin:10px 0;color:#e6e6e6}
ul{margin:10px 0 10px 24px}
footer.site{text-align:center;color:#bdbdbd;margin:40px 0 60px}
</style>
</head>
<body>
<header class="site" role="banner">
<div class="nav-row wrap">
<a class="brand" href="/" aria-label="Poke home">
<img src="/css/logo-poke.svg?v=5" alt="Poke logo">
</a>
</div>
</header>
<main class="wrap">
<h1>Poke — Terms & Policies</h1>
<p>
This page lists all legal and community-related documents for the Poke Project!!
</p>
<h2 id="privacy">Privacy Policy</h2>
<p>
Learn how Poke handles user data and what information (if any) is stored.
Spoiler: we dont collect personal data at all.
<br>
→ <a href="/policies/privacy">Read the Privacy Policy</a>
</p>
<h2 id="conduct">Community Rules / Code of Conduct</h2>
<p>
Our Code of Conduct explains how we keep Poke a safe, queer-friendly, and inclusive space.
<br>
→ <a href="/policies/code-of-conduct">Read the Code of Conduct</a>
</p>
<h2 id="licenses">Licenses & Legal Notes</h2>
<p>
Poke is Free Software — licensed under the <strong>GNU GPL v3.0 or later</strong>.
All text, art, and content across the project are likewise licensed under
free culture terms such as <strong>CC BY-SA 4.0</strong>.
<br>
→ <a href="/licenses">View Licenses</a>
</p>
<p style="margin-top:28px;color:#d1d1d1">
By using Poke, you agree to the terms and policies listed on this page.
These documents exist to protect both you and the project — and may grow over time as new sections are added or updated.
</p>
<p>
Poke is provided as-is, with no warranty or promise that itll always work perfectly.
If something breaks, causes weird behavior, eats your tabs, or refuses to play nice with another program — thats not on us.
Nobody involved in developing, modifying, or distributing Poke is responsible for any loss of data, time, or sanity that might happen while using it.
</p>
</main>
</body>
</html>