some style stuff in lists

This commit is contained in:
rhiannon morris 2021-07-25 14:48:59 +02:00
parent 54aac9c35a
commit 533efb5a31
3 changed files with 14 additions and 5 deletions

View file

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

View file

@ -1,9 +1,9 @@
<main>
<ul>
<ul class=tag-list>
$for(tags)$
<li>
<a href=tag-$it.slug$.html>$it.name$</a>
($it.count$)
<span class=count>($it.count$)</span>
$endfor$
</ul>
</main>