website/layouts/section/portfolio.html
steverusso 1b2686c3eb Switch to using Hugo. (#8)
Added all the things.

Updated gitignore and README.

Removed all the things.

Reviewed-by: jeff <jeff@simplesystems.tech>
2020-04-10 20:23:17 +00:00

19 lines
351 B
HTML

{{ define "main" }}
<div class="container">
<div class="row text-center">
<div class="col xs-12">
<h1>Our Portfolio</h1>
<hr>
</div>
</div>
<div class="row">
{{ range .Params.projects }}
<div class="col xs-12 sm-10 md-6">
{{ partial "cards/portfolio-card.html" . }}
</div>
{{ end }}
</div>
</div>
{{ end }}