pass filename to template

This commit is contained in:
Guy Godfroy 2020-12-03 21:17:21 +01:00
parent 4490a7d5ed
commit 030b1c4cdb
1 changed files with 10 additions and 8 deletions

View File

@ -61,13 +61,6 @@ for dirname, subdirlist, mdlist in os.walk('.'):
# For now, tags list must be a comma-separated string # For now, tags list must be a comma-separated string
# TODO: make possible to list tags as a YAML list # TODO: make possible to list tags as a YAML list
posts_meta.append({
"title": title,
"author": author,
"date": date,
"tags": tags
})
for item in config.replace: for item in config.replace:
mdtext = mdtext.replace(item[0],item[1]) mdtext = mdtext.replace(item[0],item[1])
@ -115,7 +108,16 @@ for dirname, subdirlist, mdlist in os.walk('.'):
gmifile = basename gmifile = basename
if config.gmi_extension: if config.gmi_extension:
gmifile += ".gmi" gmifile += ".gmi"
print(gmi_subpath+"/"+gmifile)
posts_meta.append({
"title": title,
"author": author,
"date": date,
"tags": tags,
"filename": gmifile
})
print(gmi_subpath+"/"+gmifile)
with open(gmi_subpath+"/"+gmifile, 'w') as gmi: with open(gmi_subpath+"/"+gmifile, 'w') as gmi:
gmi.write(gmitext) gmi.write(gmitext)