changed blog entries to ul

This commit is contained in:
davidovski 2022-05-22 17:35:04 +01:00
parent ebfa5ccf92
commit 5b9f6710da
3 changed files with 6 additions and 5 deletions

View File

@ -87,7 +87,7 @@ def make():
summary_templ = getTemplateHTML("summary.html") 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) formatEntry(summary_templ, page)
.replace( .replace(
@ -97,7 +97,7 @@ def make():
for page in pages for page in pages
][: : -1] ][: : -1]
) ) + "</ul>"
entry_templ = getTemplateHTML("page.html") entry_templ = getTemplateHTML("page.html")

View File

@ -15,3 +15,4 @@
<hr> <hr>
<h1 class="header">blog posts</h1> <h1 class="header">blog posts</h1>

View File

@ -1,6 +1,6 @@
<div class="entry"> <li class="entry">
<a href="%url%"> <a href="%url%">
<div class="small">%date% 🔗</div> <div class="small">%date%</div>
<span>%title%</span> <span>%title%</span>
</a> </a>
</div> </li>