simple-hugo

A simple Hugo theme I use for my website
git clone git://git.christianermann.dev/simple-hugo
Log | Files | Refs | README | LICENSE

pagination.html (370B)


      1 <div>
      2     {{ if gt .Paginator.TotalPages 1 }}
      3         {{ if .Paginator.HasPrev }}
      4             <a href="{{ .Paginator.Prev.URL }}">Previous Page</a>
      5         {{ end }}
      6         {{ .Paginator.PageNumber }} of {{ .Paginator.TotalPages }}
      7         {{ if .Paginator.HasNext }}
      8             <a href="{{ .Paginator.Next.URL }}">Next Page</a>
      9         {{ end }}
     10     {{ end }}
     11 </div>