diff options
author | davidovski <david@davidovski.xyz> | 2022-05-23 22:46:14 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-05-23 22:46:14 +0100 |
commit | b95ed1a3c82c44baff4a126567527edaf4401144 (patch) | |
tree | 9910cbede565d049030d3887f7dd3c48237565a5 | |
parent | 0b292997d5583ea9623304ec3cb53daf5822bf07 (diff) |
moved summaries to about
-rw-r--r-- | build.py | 4 | ||||
-rw-r--r-- | templates/about.html | 9 |
2 files changed, 8 insertions, 5 deletions
@@ -87,7 +87,7 @@ def make(): summary_templ = getTemplateHTML("summary.html") - summariesHTML = getTemplateHTML("about.html") + "\n<ul>\n"+ "\n".join( + summariesHTML = getTemplateHTML("about.html").replace("%posts%", "\n<ul>\n"+ "\n".join( [ formatEntry(summary_templ, page) .replace( @@ -97,7 +97,7 @@ def make(): for page in pages ][: : -1] - ) + "</ul>" + ) + "</ul>") entry_templ = getTemplateHTML("page.html") diff --git a/templates/about.html b/templates/about.html index 0fd1ce8..64623a5 100644 --- a/templates/about.html +++ b/templates/about.html @@ -10,8 +10,11 @@ <div class="image"> <img src="/images/remotecontrol.gif"> </div> -</div> -<br> + <div> + <h2>blog posts</h2> + %posts% + </div> + +</div> -<h2>blog posts</h2> |