9 lines
283 B
HTML
9 lines
283 B
HTML
{{ partial "header.html" . }}
|
|
{{ range $index, $page := (.Paginate (where (where .Data.Pages "Type" "posts") ".Params.hidden" "!=" "true" )).Pages }}
|
|
{{ if ne $index 0 }}
|
|
{{ end }}
|
|
{{ .Render "li" }}
|
|
{{ end }}
|
|
{{ partial "pagination.html" .Paginator }}
|
|
{{ partial "footer.html" . }}
|