{{- $blogSection := site.GetPage "blog" -}} {{- $latestBlogPosts := (where $blogSection.RegularPagesRecursive "Draft" "eq" false).ByDate.Reverse.Limit 2 -}} {{- $photosSection := site.GetPage "photos" -}} {{- $latestPhotoPosts := (where $photosSection.RegularPagesRecursive "Draft" "eq" false).ByDate.Reverse.Limit 4 -}}
{{ range $latestBlogPosts -}}
{{ .Render "page_summary" }}
{{ end }} {{ range $latestPhotoPosts -}}
{{ .Render "page_summary" }}
{{ end }}