summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-05-22 17:35:04 +0100
committerdavidovski <david@davidovski.xyz>2022-05-22 17:35:04 +0100
commitf131e30fcba59467ee1de36386e4f92c4a23b17c (patch)
treec1e183a3678d717effe755732f4b3c080e4d5f24
parent648353766512e0f10d6a1aa45a373a8296de70ba (diff)
changed blog entries to ul
-rw-r--r--build.py4
-rw-r--r--templates/about.html1
-rw-r--r--templates/summary.html6
3 files changed, 6 insertions, 5 deletions
diff --git a/build.py b/build.py
index d28e1e1..d78003d 100644
--- a/build.py
+++ b/build.py
@@ -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")
diff --git a/templates/about.html b/templates/about.html
index 3d83a89..d89508f 100644
--- a/templates/about.html
+++ b/templates/about.html
@@ -15,3 +15,4 @@
<hr>
<h1 class="header">blog posts</h1>
+
diff --git a/templates/summary.html b/templates/summary.html
index 808c705..483763f 100644
--- a/templates/summary.html
+++ b/templates/summary.html
@@ -1,6 +1,6 @@
-<div class="entry">
+<li class="entry">
<a href="%url%">
- <div class="small">%date% 🔗</div>
+ <div class="small">%date%</div>
<span>%title%</span>
</a>
-</div>
+</li>