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

12 lines
314 B
HTML
Raw Normal View History

2023-08-12 10:44:17 +00:00
{{ define "main" }}
2023-10-21 02:15:08 +00:00
<article>
{{ .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-10-21 02:15:08 +00:00
</article>
2023-08-12 10:44:17 +00:00
{{ end }}