redstrate.com/themes/retro/layouts/shortcodes/recent-posts.html
2023-07-04 21:14:10 -04:00

6 lines
239 B
HTML

{{ range first 3 (where .Site.Pages "Type" "blog").ByDate.Reverse }}
<li style="margin-left: 10px; list-style-type: square;">
<a href="{{ .Permalink }}">{{ .Title }}</a>
<p><i>{{ .Summary }}</i></p>
</li>
{{ end }}