waffelo.net/themes/plague/layouts/shortcodes/recent-posts.html
2025-04-25 07:09:59 +02:00

11 lines
246 B
HTML

<h2>Recent Posts</h2>
<ul>
{{ range first 5 (where .Site.RegularPages "Type" "post") }}
<li>
<a href="{{ .Permalink }}">
<time>{{ .Date.Format "January 2, 2006" }}</time> - {{ .Title }}
</a>
</li>
{{ end }}
</ul>