bots/logbot/index.html.j2

21 lines
335 B
Django/Jinja

<!DOCTYPE html>
<html>
<head>
<meta charset="utf8">
<title>*logbot*</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>
<body>
<h1>OMG</h1>
{% for num, msg in messages.items() %}
<div class="post">
<p class="id">({{ num }})</p>
<p class="message">{{ msg }}</p>
</div>
{% endfor %}
</body>
</html>