{{ define "main" }} {{ partial "hero.html" . }}
Latest
{{ $posts := where site.RegularPages "Type" "in" (slice "articles") }} {{ $posts := sort $posts "Params.date" "desc" }} {{ $latest := first 3 $posts }}
{{ range $latest }} {{ $data := dict "title" .Title "type" .Params.type "description" .Summary "date" .Date "url" .RelPermalink "image" .Params.image "featured" .Params.featured }} {{ partial "post-card.html" $data }} {{ end }}
View all articles
{{ end }}