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 1 additions and 1 deletions
Showing only changes of commit 4490a7d5ed - Show all commits

View File

@ -119,7 +119,7 @@ for dirname, subdirlist, mdlist in os.walk('.'):
with open(gmi_subpath+"/"+gmifile, 'w') as gmi:
gmi.write(gmitext)
posts_meta.sort(key=lambda p: datetime.strptime(p["date"], "%Y-%m-%d"), reverse=True)
posts_meta.sort(key=lambda p: p["date"], reverse=True)
with open(tpl_path+"/index.tpl", 'r') as tpl:
template = Template(tpl.read())