diff options
author | davidovski <david@davidovski.xyz> | 2022-05-22 17:35:04 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-05-22 17:35:04 +0100 |
commit | f131e30fcba59467ee1de36386e4f92c4a23b17c (patch) | |
tree | c1e183a3678d717effe755732f4b3c080e4d5f24 /build.py | |
parent | 648353766512e0f10d6a1aa45a373a8296de70ba (diff) |
changed blog entries to ul
Diffstat (limited to 'build.py')
-rw-r--r-- | build.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -87,7 +87,7 @@ def make(): summary_templ = getTemplateHTML("summary.html") - summariesHTML = getTemplateHTML("about.html") + "\n<hr>\n"+ "\n".join( + summariesHTML = getTemplateHTML("about.html") + "\n<hr><ul>\n"+ "\n".join( [ formatEntry(summary_templ, page) .replace( @@ -97,7 +97,7 @@ def make(): for page in pages ][: : -1] - ) + ) + "</ul>" entry_templ = getTemplateHTML("page.html") |