blag/templates/post-grid.html
2019-10-27 23:03:56 -04:00

12 lines
312 B
HTML

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