{{ define "hero" }} {{ partial "hero.html" . }} {{ end }} {{ define "main" }} {{ range $index, $element := (where .Pages "Type" "in" .Site.Params.mainSections).ByWeight }} <div class="stripe-dark"> <div class="mw7 center pa1"> <h2 id="{{ anchorize .Title | safeURL }}" class="baskerville lh-title f2" > {{ .Title }} </h2> {{ range first 3 .Pages.ByPublishDate.Reverse }} {{ partial "post.html" . }} {{ end }} <div class="tc pa3"> <i class="fas fa-angle-right"></i> <a href="{{ .Type }}" class="f3 link near-black">{{ T "See all" }}</a> </div> </div> </div> {{ end }} {{ end }}