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

pagination.html « partials « layouts - github.com/st-wong/hugo-spectre-pixel-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 589554275532a6caaac067347319142faf6b002d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{{ if gt .Paginator.TotalPages 1 }}
<nav class="pagination">
  {{ if .Paginator.HasPrev }}
    <span class="page-item page-prev">
      <a href="{{ .Paginator.Prev.URL }}">
        <div class="page-item-subtitle">{{ .Site.Params.newerPosts | default "Newer Posts" }}</div>
        <div class="page-item-title btn btn-action btn-accent shadow s-circle"><i class="fas fa-arrow-left"></i></div>
      </a>
    </span>
  {{ end }}
  {{ if .Paginator.HasNext }}
    <span class="page-item page-next">
      <a href="{{ .Paginator.Next.URL }}">
        <div class="page-item-subtitle">{{ .Site.Params.olderPosts | default "Older Posts" }}</div>
        <div class="page-item-title btn btn-action btn-accent shadow s-circle"><i class="fas fa-arrow-right"></i></div>
      </a>
    </span>
  {{ end }}
</nav>
{{ end }}