culinary.kemonine.info/themes/gochowdown/layouts/partials/home.html

22 lines
861 B
HTML

<div class="home">
<div class="recipes xs-px1 xs-mt2">
<div class="clearfix">
`{{ range ( .Paginate (sort (where site.RegularPages "Type" "in" site.Params.mainSections) "Title" )).Pages }}`
<div class="sm-col sm-col-6 md-col-6 lg-col-4 xs-px1 xs-mb2">
<a class="block relative bg-blue" href="{{ .RelPermalink }}">
{{ if .Params.Image }}
{{ with .Resources.GetMatch .Params.Image }}
{{ with .Fit "512x512" }}
<div class="image ratio bg-cover" style="background-image:url({{ .RelPermalink }});"></div>
{{ end }}
{{ end }}
{{ end }}
<h1 class="title p2 m0 absolute white bottom-0 left-0 title-shadow">{{ .Title }}</h1>
</a>
</div>
{{ end }}
</div>
</div>
{{ partial "pagination.html" . }}
</div>