Added all the things.

This commit is contained in:
2020-04-10 16:14:44 -04:00
parent e9102cb58d
commit cd6862c836
47 changed files with 1139 additions and 0 deletions

View File

@ -0,0 +1,18 @@
{{ 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 }}