12 lines
413 B
HTML
12 lines
413 B
HTML
{{ define "main" }}
|
|
{{ .Content }}
|
|
<h2>Latest Blog Posts</h2>
|
|
{{ range first 3 (where .Site.RegularPages.ByDate.Reverse "Section" "blog") }}
|
|
<article>
|
|
<h3><a href="{{ .RelPermalink }}">{{ .Name }}</a></h3>
|
|
<time class="dt-published" datetime="{{ .PublishDate }}">{{ .PublishDate.Format "Mon, Jan 2, 2006" }}</time>
|
|
{{ partial "tags.html" .}}
|
|
</article>
|
|
{{ end }}
|
|
{{ end }}
|