Add support for hidden posts

See https://discourse.gohugo.io/t/custom-pagination-is-not-working/39049/8?u=elnudev
This commit is contained in:
Elnu 2022-07-20 13:18:29 -07:00
parent ab51476ba4
commit 7ef69b2c94

View file

@ -1 +1,10 @@
{{ if and .IsHome (eq .Paginator.PageNumber 1) }}{{ .Site.Params.HomepageHeader | safeHTML }}{{ else }}<a href="/">&laquo; Home</a>{{ end }}
{{- $pagination := "" }}
{{- if .IsHome }}
{{ $pagination = .Paginate (where .Site.RegularPages "Params.hidden" "!=" true) }}
{{- end }}
{{ if and .IsHome (eq $pagination.PageNumber 1) }}
{{ .Site.Params.HomepageHeader | safeHTML }}
{{ else }}
<a href="/">&laquo; Home</a>
{{ end }}