blob: fd2efae18d0d40a7e63c44b64a9247d781c27e0d (
plain) (
blame)
1
2
3
4
5
|
{{ define "main" }} <h1>{{ .Title }}</h1>
<ul>{{ range $index, $element := .Paginator.Pages }}
<li><h3><a href="{{ .Permalink }}">{{ .Title }}</a></h3><span>{{ .PublishDate.Format "Jan 2, 2006" }}{{ if ne .Lastmod .PublishDate }} updated{{ end }}, {{ .ReadingTime }} min read</span></li>{{ end }}
</ul>
{{ partial "pagination.html" $ }}{{ end }}
|