{{- $articlelimit := 5 }}
{{- $articlenum := len .Pages }}
{{- $counter := 0 }}
{{- $recentpostlimit := (sub now.Unix 31536000 ) }}
{{- range first $articlelimit .Pages }}
{{- $counter = add $counter 1 }}
{{- if eq $counter 1 }}
{{- .Summary }}
{{else}}
{{- .Summary }}
{{- end }}
{{- end }}
{{ if gt $articlenum $articlelimit }}
Παλαιότερα άρθρα
{{ range after 10 .Pages }}
- {{ .Title }} {{ dateFormat "02/01/2006" .Date }}
{{ end }}
{{ end }}