blob: 91cfd74886ced1880e8e993e47b57364ca1fba39 (
plain) (
tree)
|
|
<div class="thumbs">
$for(posts)$
<div class="thumb panel">
$if(thumbnail)$
<div class="thumbnail" style="height: 25vh">$thumbnail$</div>
<br>
$endif$
<div class="thumb-title">
<a href="$url$">
<h2>$title$</h2>
<div style="flex-grow: 1"></div>
<h3>
$if(author)$
<span>$author$ - </span>
$endif$
<span>$date$</span>
</h3>
</a>
</div>
$if(subtitle)$
<div class="thumb-subtitle">
$subtitle$
</div>
$endif$
</div>
$endfor$
</div>
|