JohnTech/layouts/partials/recentPosts.html
2025-03-12 22:42:42 +00:00

7 lines
231 B
HTML

<h2>Recent Posts</h2>
<ul>
{{ range first 5 (where site.RegularPages "Section" "blog") }}
<li><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>{{ if .Date }}<p>{{ .Date.Format "2006-01-02" }}</p>{{ end }}</li>
{{ end }}
</ul>