summaryrefslogtreecommitdiff
path: root/build.py
diff options
context:
space:
mode:
Diffstat (limited to 'build.py')
-rw-r--r--build.py4
1 files changed, 2 insertions, 2 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")