wizard

placeholder description
git clone git@git.shmage.xyz/wizard.git
Log | Files | Refs | README

pagination.html (277B)


      1 <div>
      2   <strong>
      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   </strong>
     11 </div>