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

pagination.html « partials « layouts - github.com/zhe/hugo-theme-slim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b5b408ab9e2bf31c01046290d50ea041c7544ab8 (plain)
1
2
3
4
5
<div class="pagination">
  {{ if .Paginator.HasPrev }}
  <a class="btn previous" href="{{ .Paginator.Prev.URL }}">Newer</a> {{ end }} {{ if .Paginator.HasNext }}
  <a class="btn next" href="{{ .Paginator.Next.URL }}">Older</a> {{ end }}
</div>