forked from varia/bots
21 lines
370 B
HTML
21 lines
370 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf8">
|
||
|
<title>{{ title }} - (Generator: LogBot)</title>
|
||
|
<link rel="stylesheet" type="text/css" href="stylesheet.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>{{ title }}</h1>
|
||
|
|
||
|
{% for num, msg in db.items() %}
|
||
|
|
||
|
<div class="post">
|
||
|
<p class="key">[{{ num }}]</p>
|
||
|
<p class="message">{{ msg }}</p>
|
||
|
</div>
|
||
|
|
||
|
{% endfor %}
|
||
|
</body>
|
||
|
</html>
|