Luke Murphy
4 years ago
3 changed files with 22 additions and 18 deletions
@ -1,17 +0,0 @@ |
|||
<!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> |
@ -0,0 +1,20 @@ |
|||
<!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> |
Loading…
Reference in new issue