This commit is contained in:
rhiannon morris 2021-07-24 03:35:02 +02:00
commit 77a53e06a5
21 changed files with 1070 additions and 0 deletions

9
templates/postlist.html Normal file
View file

@ -0,0 +1,9 @@
<main>
<ul>
$for(posts)$
<li>
<a href=$it.file$.html>$it.title$</a>
($it.date$)
$endfor$
</ul>
</main>