A place for all our bot adventures.
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.
 
 
 
 

22 lines
578 B

<!DOCTYPE html>
<html>
<head>
<meta charset="utf8">
<title>{{ title }} - (Generator: LogBot)</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<h1>{{ title }}</h1>
(Follow this log: <a href="./feed.rss">RSS</a>)
<div id="container">
{% for num in sorted_keys | reverse %}
<div id="{{ num }}" class="post">
<p class="key">{{ num }}</p>
<p class="message">{{ db[num] | href_wrap }}</p>
</div>
{% endfor %}
</div>
<footer></footer>
</body>
</html>