And, let’s say you are using this on a blog section and perhaps have a featured post at the top of the first page (i.e. not a paginated page). You could then add ‘not’:
{{ $pag := .Paginate .Data.Pages }}
{{ if not $pag.HasPrev }}
<h1>My very special featured post</h1>
{{ else }}
// Nothing, or something else here for our paginated pages
{{ end }}