meta-pages #1

Merged
raspbeguy merged 10 commits from meta-pages into master 2020-12-03 21:43:18 +01:00
1 changed files with 3 additions and 0 deletions
Showing only changes of commit 662c46b0f0 - Show all commits

View File

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