summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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>