blog/layouts/_default/list.html

7 lines
141 B
HTML
Raw Normal View History

2023-05-31 13:35:32 -04:00
{{ define "main" }}
2023-07-21 22:46:10 -04:00
<h1 class="text-center">Posts</h1>
2023-07-15 20:10:41 -04:00
{{ range .Pages }}
{{ partial "postcard" . }}
{{ end }}
2023-05-31 13:35:32 -04:00
{{ end }}