{{ define "main" }} {{if not .IsHome }}

{{ .Title | markdownify | lower }}

{{ end }} {{ .Content }}
{{ $pages := .Pages }} {{ if .IsHome }}{{ $pages = where .Site.RegularPages "Section" "not in" (default "[]" .Site.Params.excludedSections) }}{{ end }} {{ range (where $pages "Section" "ne" "") }} {{ partial "article-card.html" . }} {{ end }}
{{ end }}