litey/templates/index.html
2025-03-05 23:44:10 +00:00

31 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>LiteY</title>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<h1>掲示板へようこそ!</h1>
<p>良識のあるメッセージを心がけてください</p>
{% for i in range(max_page) %}
<a href="/?page={{ i }}">{{ i }}</a>
{% endfor %}
<p></p>
<textarea placeholder="ここにメッセージを入力" rows="4" cols="50" id="message"></textarea>
<input type="submit" value="今すぐ送信!" onclick="notePost();">
{% for note in notes %}
<div id="note">
<div>{{ note.ip | ip_to_uid }}</div>
<div>{{ note.content | replace_ng_words(ng_words) }}</div>
<div id="attachments" data-linksets="{{ note.content | content_to_linksets | urlencode() }}"></div>
<code id="date" data-date="{{ note.date | urlencode() }}"></code>
{% if not ("/ninja" in note.content and not note.date | fromisoformat | is_over_n_hours(72)) %}
<input type="submit" value="削除" onclick="noteDelete(this);" data-id="{{ note.id | urlencode() }}" data-preview="{{ note.content | urlencode() }}">
{% endif %}
</div>
{% endfor %}
</body>
</html>