Rener using built-in template

This commit is contained in:
Luke Murphy 2021-02-27 19:57:35 +01:00
parent 0f3c2e758b
commit 8e8b54e3e1
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC

View File

@ -102,11 +102,10 @@ class Logbot(Bot):
def _write_log(self, message):
"""Write new log to the file system."""
template = jinja2.Template(open("template.html").read())
room_name = self._parse_room_name(message.room)
log_path = os.path.join(self.output, room_name, "index.html")
with open(log_path, "w") as out:
html = template.render(
html = self.template.render(
title=self.db[message.room]["title"],
db=self.db[message.room]["messages"],
)