12 lines
323 B
HTML
12 lines
323 B
HTML
{{ define "main" }}
|
|
<section class="highlighted">
|
|
<h1>#{{ .Title }}</h1>
|
|
{{ .Content }}
|
|
</section>
|
|
{{ range .Pages }}
|
|
<section>
|
|
<p><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a> | {{ .Date | time.Format "2006-01-02, 15:04 -07:00" }}</p>
|
|
{{ .Summary }}
|
|
</section>
|
|
{{ end }}
|
|
{{ end }}
|