add date to post page
All checks were successful
/ build (push) Successful in 4s

This commit is contained in:
Collin Lefeber 2025-03-29 15:49:02 -04:00
parent 3df1bb924b
commit 24b03c77c3

View file

@ -40,7 +40,11 @@ def render_post(fpath):
if meta.get("draft"):
draft = True
title_out, _ = convert("# " + title)
disp_date = datetime.datetime.fromisoformat(date).strftime(
"%Y-%m-%d"
)
title_out, _ = convert("# " + title + f'\n\n<time datetime="{disp_date}">{disp_date}</time>')
out = title_out + out
logging.info("writing to %s", destpath)