2024-02-23 04:35:34 +00:00
|
|
|
{{ define "main" }}
|
|
|
|
{{ .Content }}
|
|
|
|
<h2>Latest Blog Posts</h2>
|
|
|
|
{{ range first 3 (where .Site.RegularPages.ByDate.Reverse "Section" "blog") }}
|
2024-02-29 01:42:02 +00:00
|
|
|
<article>
|
|
|
|
<h3><a href="{{ .RelPermalink }}">{{ .Name }}</a></h3>
|
2024-03-03 15:49:43 +00:00
|
|
|
<time class="dt-published" datetime="{{ .PublishDate }}">{{ .PublishDate.Format "Mon, Jan 2, 2006" }}</time>
|
|
|
|
{{ partial "tags.html" .}}
|
2024-02-23 04:35:34 +00:00
|
|
|
</article>
|
2024-02-29 01:42:02 +00:00
|
|
|
{{ end }}
|
2024-02-23 04:35:34 +00:00
|
|
|
{{ end }}
|