Paginate from a specific path

Hello;

I want to display recent posts summary on my home page.

How is it possible to force Hugo to seek them in a specifig /content/blog dir, using Paginate function.

Regards

somthing like this?

{{ range $index, $element := first site.Params.pagination.PagesPerListHome (where site.RegularPages "Section" "eq" "post") -}}
	{{.Render "summary"}}
{{- end }}