redstrate.com/themes/red/layouts/shortcodes/recent-posts.html
2022-12-27 21:47:12 -05:00

10 lines
212 B
HTML

<h3>Recent Blog Posts</h3>
<div class="generic-con">
{{ range first 3 (where .Site.Pages "Type" "blog").ByDate.Reverse }}
<li>
<a href="{{ .Permalink }}">{{ .Title }}</a>
</li>
{{ end }}
</div>