yequari.com/themes/saturn/layouts/index.html

10 lines
293 B
HTML
Raw Normal View History

2023-08-12 10:44:17 +00:00
{{ define "main" }}
{{ .Content }}
<h2>Latest Blog Posts</h2>
{{ range first 3 (where .Site.RegularPages.ByDate.Reverse "Section" "blog") }}
<h3>{{ .Name }}</h3>
<p>{{ .Summary }}</p>
<a href="{{ .RelPermalink }}">Read More &gt;</a>
{{ end }}
2023-08-12 10:44:17 +00:00
{{ end }}