11 lines
275 B
HTML
11 lines
275 B
HTML
|
{{ define "main" }}
|
||
|
<h1>{{ .Title }}</h1>
|
||
|
{{ range .Pages.ByPublishDate.Reverse }}
|
||
|
<p>
|
||
|
<h3><a class="title" href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
|
||
|
{{ partial "metadata.html" . }}
|
||
|
<a class="summary" href="{{ .RelPermalink }}"/a>
|
||
|
</p>
|
||
|
{{ end }}
|
||
|
{{ end }}
|