blogng/templates/post-list.html

18 lines
277 B
HTML
Raw Normal View History

2020-04-07 10:42:13 +00:00
<ul id="postlist">
2017-01-22 21:30:42 +00:00
$for(posts)$
2019-08-03 16:16:25 +00:00
<li>
2020-04-07 10:42:13 +00:00
<div>
<div>
<a href="$url$">$title$</a>
</div>
<div class="postmeta"><div id="date">$date$</div>
$if(tags)$
<div id="tags">Posted in $tags$</div>
$endif$
</div>
</div>
2019-08-03 16:16:25 +00:00
</li>
2017-01-22 21:30:42 +00:00
$endfor$
</ul>
2020-04-07 10:42:13 +00:00
</div>