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: c77970259f1a93068333c3148e3f32e5df80eb63 (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>