45 lines
1.6 KiB
HTML
45 lines
1.6 KiB
HTML
<!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>
|
|
<div class="inner">
|
|
<h1>Ask Stallman</h1>
|
|
</div>
|
|
</header>
|
|
{%- if message.len() != 0 -%}
|
|
<div class="notification notification-{{ ntfy_class }}">
|
|
<p>{{ message }}</p>
|
|
</div>
|
|
{%- endif -%}
|
|
<div class="question">
|
|
<form method="post">
|
|
<input class="input" type="text" name="question" placeholder="Your question" autocomplete="off" maxlength="1024">
|
|
<input class="submit" type="submit" value="Send question">
|
|
</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" target="_blank">Zumepro</a></p>
|
|
</footer>
|
|
</body>
|
|
</html>
|