blag/templates/post-grid.html
2019-11-16 08:43:17 -05:00

20 lines
441 B
HTML

<!-- Begin Hakyll template, post-grid.html -->
<div class="row equal">
$for(works)$
<div class="col-sm-6">
<h3>$title$</h3>
<a href="$img$">
<img src="$img$" class="img-responsive"/>
</a>
<!-- N.B. use img-fluid for Bootstrap 4 -->
$if(description)$
$description$
<a href="$url$">$date$</a>
$else$
$body$
$endif$
</div>
$endfor$
</div>
<!-- End Hakyll template, post-grid.html -->