From 0f3c2e758b8264329da6b13940ff0cb198a753ef Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Sat, 27 Feb 2021 19:57:24 +0100 Subject: [PATCH] Use default template file --- LogBot/index.html.j2 | 17 +++++++++++++++++ LogBot/template.html | 20 -------------------- 2 files changed, 17 insertions(+), 20 deletions(-) create mode 100644 LogBot/index.html.j2 delete mode 100644 LogBot/template.html diff --git a/LogBot/index.html.j2 b/LogBot/index.html.j2 new file mode 100644 index 0000000..a243627 --- /dev/null +++ b/LogBot/index.html.j2 @@ -0,0 +1,17 @@ + + + + + {{ title }} - (Generator: LogBot) + + + +

{{ title }}

+ {% for num, msg in db.items() %} +
+

[{{ num }}]

+

{{ msg }}

+
+ {% endfor %} + + diff --git a/LogBot/template.html b/LogBot/template.html deleted file mode 100644 index 0b74587..0000000 --- a/LogBot/template.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - {{ title }} - (Generator: LogBot) - - - -

{{ title }}

- - {% for num, msg in db.items() %} - -
-

[{{ num }}]

-

{{ msg }}

-
- - {% endfor %} - -