website/templates/post-list.html

18 lines
307 B
HTML

$for(posts)$
<div class="post-entry">
<a class="post-title" href="$url$">
$if(displaytitle)$
$displaytitle$
$else$
$title$
$endif$
</a>
$partial("templates/post-meta.html")$
</div>
$sep$
<hr class="short-hr">
$endfor$
<!--
vim: ts=2:sts=2:sw=2:et
-->