Ajout de la pagination.
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2026-03-11 14:09:50 +01:00
parent d6d6b8e690
commit 5eeba425c9
3 changed files with 25 additions and 1 deletions
+17
View File
@@ -0,0 +1,17 @@
<ul>
{{ if .HasPrev }}
{{ if .Prev.HasPrev }}
<li><a href="{{ .First.URL }}">Première page</a></li>
{{ end }}
<li><a href="{{ .Prev.URL }}">Page précédente</a></li>
{{ end }}
{{ if .HasNext }}
<li><a href="{{ .Next.URL }}">Page suivante</a></li>
{{ if .Next.HasNext }}
<li><a href="{{ .Last.URL }}">Dernière page</a></li>
{{ end }}
{{ end }}
</ul>