index: remove preview list

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2023-04-27 18:46:46 +05:30
parent bf64bc92ef
commit ea9ec55590
3 changed files with 23 additions and 41 deletions

View File

@@ -1,27 +0,0 @@
<ul class="post-preview-item-list">
$for(posts)$
<li class="post-preview-item" >
<article>
<h1 class="post-title">$title$</h1>
<div class="post-header">
<div class="post-date" >
Posted $date$
</div>
<div class="tags" >
$if(tags)$
Tags: $tags$
$endif$
</div>
</div>
<div class="post-teaser">
$if(teaser)$
$teaser$
$else$
$body$
$endif$
</div>
<a href="$url$">Read more</a>
</article>
</li>
$endfor$
</ul>