11 lines
294 B
HTML
Raw Normal View History

2024-02-22 21:35:34 -07:00
{{ define "main" }}
{{ .Content }}
<h2>Latest Blog Posts</h2>
{{ range first 3 (where .Site.RegularPages.ByDate.Reverse "Section" "blog") }}
2024-02-28 18:42:02 -07:00
<article>
<h3><a href="{{ .RelPermalink }}">{{ .Name }}</a></h3>
<p>{{ .Summary }}...</p>
2024-02-22 21:35:34 -07:00
</article>
2024-02-28 18:42:02 -07:00
{{ end }}
2024-02-22 21:35:34 -07:00
{{ end }}