12 lines
274 B
HTML
12 lines
274 B
HTML
|
{{ define "main" }}
|
||
|
<h1>{{ .Title }}</h1>
|
||
|
{{ .Content }}
|
||
|
{{ range .Pages }}
|
||
|
<section>
|
||
|
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
|
||
|
<h3>{{ .PublishDate.Format "January 02, 2006" }}</h3>
|
||
|
{{ .Content }}
|
||
|
</section>
|
||
|
{{ end }}
|
||
|
{{ end }}
|