My public website https://www.chameth.com/
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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>