{{ define "main" }}

{{ .Title }}

{{ if eq .Type "articles" }}
{{ range .Pages.ByDate.Reverse }} {{ $data := dict "title" .Title "type" .Params.type "description" .Summary "date" .Date "url" .RelPermalink "image" .Params.image "featured" false }} {{ partial "post-card.html" $data }} {{ end }}
{{ else }} {{ .Content }} {{ end }}
{{ if eq .Type "articles" }} {{ end }} {{ end }}