In list templates, paginate with .Paginator.Pages instead of .Pages:
{{ range .Paginator.Pages }}
Default page size is 10. Override per call:
{{ range (.Paginator 5).Pages }}
Render controls with the built-in template (Bootstrap-compatible markup):
{{ template "_internal/pagination.html" . }}
Config
Set the global page size in config.toml:
paginate = 10
Andrew Dorokhov