{{ define "main" }}

  {{ $num_recent_posts := .Site.Params.num_recent_posts | default "5" }}

  {{ range first $num_recent_posts (where .Data.Pages "Type" "post") }}
    {{ .Render "summary"}}
  {{ end }}

{{ end }}