You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
335 B
21 lines
335 B
<!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>
|