Files
alexis.lahouze.org/layouts/section.html
T
alahouze 5eeba425c9
ci/woodpecker/push/woodpecker Pipeline was successful
Ajout de la pagination.
2026-03-11 14:09:50 +01:00

23 lines
551 B
HTML

{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ .Content }}
{{ $pages := .RegularPagesRecursive.ByDate.Reverse }}
{{ $pager := .Paginate $pages }}
{{ range $pager.Pages }}
<article>
<h2><a href="{{ .RelPermalink }}">{{ .Title }}</a></h2>
{{ .Summary }}
{{ if .Truncated }}
<a href="{{ .RelPermalink }}">Lire plus sur &laquo;&nbsp;{{ .Title }}&nbsp;&raquo;</a>
{{ end }}
</article>
{{ end }}
{{ partial "pagermenu.html" $pager }}
{{ end }}
{{/* vim: set tw=80 ts=2 sw=2 sts=2 ft=gohtmltmpl: */}}