blog/hugo/layouts/_default/list.html

10 lines
158 B
HTML
Raw Normal View History

2023-05-31 13:35:32 -04:00
{{ define "main" }}
<h1>Posts</h1>
{{ range .Pages }}
<article>
<h2>{{ .Title }}</h2>
{{ .Content }}
</article>
{{ end }}
{{ end }}