mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
6 lines
128 B
HTML
6 lines
128 B
HTML
|
{{ define "main" }}
|
||
|
{{ range .Pages }}
|
||
|
<h1>{{ .Title }} {{ .Date.Format "Jan 2, 2006" }}</h1>
|
||
|
{{ .Content }}
|
||
|
{{ end }}
|
||
|
{{ end }}
|