My public website https://www.chameth.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pagination.html 401B

1234567891011121314
  1. <nav id="page-nav">
  2. {{ if or (.Paginator.HasPrev) (.Paginator.HasNext) }}
  3. {{ if .Paginator.HasPrev }}
  4. <a class="extend prev" rel="prev" href="{{.Paginator.Prev.URL}}">
  5. « Previous
  6. </a>
  7. {{ end }}
  8. {{ if .Paginator.HasNext }}
  9. <a class="extend next" rel="next" href="{{.Paginator.Next.URL}}">
  10. Next »
  11. </a>
  12. {{ end }}
  13. {{ end }}
  14. </nav>