normally that should work

This commit is contained in:
Guy Godfroy 2020-12-03 20:44:02 +01:00
parent 5c8aadfb4a
commit 662c46b0f0
1 changed files with 3 additions and 0 deletions

View File

@ -125,3 +125,6 @@ with open(tpl_path+"/index.tpl", 'r') as tpl:
template = Template(tpl.read())
indextext = template.render(posts_meta=posts_meta)
with open(meta_path+"/index.gmi", 'w') as index:
index.write(indextext)