Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pagination.html « partials « layouts - github.com/de-souza/hugo-flex.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4b82f51a3946129d70c0a9b185b1c5b8287bfe51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{ $paginator := .Scratch.Get "paginator" }}

{{ if gt $paginator.TotalPages 1 }}
  <nav>
    {{ with $paginator.Next }}
      <a class="Pagination u-clickable" href="{{ .URL }}" rel="prev">« Previous</a>
    {{ end }}
    {{ with $paginator.Prev }}
      <a class="Pagination Pagination--right u-clickable" href="{{ .URL }}" rel="next">Next »</a>
    {{ end }}
  </nav>
{{ end }}