forked from varia/bots
Use default template file
This commit is contained in:
parent
99cd4e5d6d
commit
0f3c2e758b
17
LogBot/index.html.j2
Normal file
17
LogBot/index.html.j2
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
<!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>
|
@ -1,20 +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>
|
|
Loading…
Reference in New Issue
Block a user