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

12 lines
314 B
HTML
Raw Normal View History

2024-02-23 04:35:34 +00:00
{{ define "main" }}
<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 }}
</article>
{{ end }}