From 255ddf90edbb2d885ce159e2fdbb6f79f21c0b11 Mon Sep 17 00:00:00 2001 From: davidovski Date: Sun, 22 May 2022 17:27:42 +0100 Subject: removed text from blog entries --- build.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'build.py') diff --git a/build.py b/build.py index d076ccd..a8bc85f 100644 --- a/build.py +++ b/build.py @@ -38,13 +38,14 @@ def listPages(): "source_file" : path, "source_content" : content, "html" : markdown.markdown("\n".join(content.split("\n...\n"))), + "title" : content.split("\n")[0].replace("# ", ""), "summary" : lowerHeadings(markdown.markdown(content.split("\n...\n")[0])), "timestamp" : timestamp, "date": time.strftime(date_format, time.localtime(timestamp)), "name" : name, "url" : f"entries/{name}.html" })(".".join(p.split(".")[:-1])) - )(os.stat(path).st_ctime) + )(os.stat(path).st_mtime) )(open(path, "r").read()) )(os.path.join(source, p)) for p in os.listdir(source) ] @@ -92,7 +93,7 @@ def make(): .replace( "%content%", page["summary"] + (f"read more..." if len(page["source_content"].split("\n...\n")) > 1 else "") - ) + ).replace("%title%", page["title"]) for page in pages ][: : -1] -- cgit v1.2.1