{{ define "main" }}

{{ .Title }}

{{ .Content }} {{ $pages := .RegularPagesRecursive.ByDate.Reverse }} {{ $pager := .Paginate $pages }} {{ range $pager.Pages }}

{{ .Title }}

Publié le {{ (or .PublishDate .LastModified) | time.Format ":date_full" }} à {{ (or .PublishDate .LastModified) | time.Format ":time_short" }} {{ with or (.Param "author") (.Site.Param "author") }}par {{ . }}{{ end }}

{{ with .ReadingTime }}

Temps de lecture estimé : {{ . }} minute(s).

{{ end }} {{ .Summary }} {{ if .Truncated }}

Lire plus sur « {{ .Title }} »

{{ end }}
{{ end }} {{ partial "pagermenu.html" $pager }} {{ end }} {{/* vim: set tw=80 ts=2 sw=2 sts=2 ft=gohtmltmpl: */}}