mirror of
https://github.com/foo-dogsquared/hugo-theme-contentful.git
synced 2025-01-31 04:58:03 +00:00
34 lines
1.0 KiB
HTML
34 lines
1.0 KiB
HTML
{{ define "main" }}
|
|
<hr>
|
|
{{ .Content }}
|
|
|
|
{{ $pages := .Pages }}
|
|
{{ if .IsHome }}
|
|
{{ $pages = where $.Site.RegularPages "Type" "in" $.Site.Params.mainSections }}
|
|
{{ end }}
|
|
{{ range (where (.Paginate $pages).Pages "Params.hidden" "!=" true) }}
|
|
<article class="post">
|
|
<a href="{{ .Permalink }}" aria-label="{{ .Title }}"><h1>{{ .Title }}</h1></a>
|
|
<date datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "2006-01-02" }}</date>
|
|
</article>
|
|
{{ end }}
|
|
|
|
<div class="pagination">
|
|
{{- if .Paginator.HasPrev }}
|
|
{{- if ne .Paginator.First .Paginator.Prev -}}
|
|
<a rel="first" href="{{ .Paginator.First.URL }}">{{ i18n "first_page" }}</a>
|
|
{{- end }}
|
|
|
|
<a rel="prev" href="{{ .Paginator.Prev.URL }}">{{ i18n "prev_page" }}</a>
|
|
{{- end }}
|
|
|
|
{{- if .Paginator.HasNext -}}
|
|
<a rel="next" href="{{ .Paginator.Next.URL }}">{{ i18n "next_page" }}</a>
|
|
|
|
{{- if ne .Paginator.Last .Paginator.Next -}}
|
|
<a rel="last" href="{{ .Paginator.Last.URL }}">{{ i18n "last_page" }}</a>
|
|
{{- end }}
|
|
{{- end }}
|
|
</div>
|
|
{{ end }}
|