This repository has been archived on 2022-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
resilien.fr/layouts/blog/list.html

9 lines
182 B
HTML

{{ define "main" }}
{{ .Content }}
<ul>
{{ range .Pages }}
<li>{{ .Date | time.Format ":date_medium" }} - {{ partial "article-link" . }}</li>
{{ end }}
</ul>
{{ end }}