wip: add client base and basic router

This commit is contained in:
2025-05-02 10:08:29 +02:00
parent 96bf9303ea
commit 4af8c825bb
8 changed files with 126 additions and 9 deletions

36
client/index.html Normal file
View File

@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Ask Stallman</title>
<link href="style.css" rel="stylesheet">
</head>
<body>
<header>
<h1>Ask Stallman</h1>
</header>
<div class="question">
<form method="post">
<input type="text" name="question" placeholder="Your question" autocomplete="off">
</form>
</div>
<div class="info">
<p>We kindly ask you to consider this before sending:</p>
<ul>
<li>
Please write your question in English. Dr Stallman will be reading it
unedited during the discussion block.
</li>
<li>Keep it kind. We are all here to learn something.</li>
<li>
Don't spam. We try to keep algorithmic moderation as permissive as possible.
So we ask you to moderate yourself.
</li>
</ul>
</div>
<footer>
<p><a href="https://zumepro.cz">Zumepro</a> 2025</p>
</footer>
</body>
</html>