blag/templates/post-grid.html
2019-11-01 17:19:21 -04:00

14 lines
334 B
HTML

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