redstrate.com/themes/retro/layouts/shortcodes/recent-posts.html

7 lines
242 B
HTML
Raw Normal View History

2023-03-30 21:47:18 -04:00
{{ range first 3 (where .Site.Pages "Type" "blog").ByDate.Reverse }}
<li style="margin-left: 10px; list-style-type: square;">
2023-10-29 15:20:14 -04:00
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
2023-03-30 21:47:18 -04:00
<p><i>{{ .Summary }}</i></p>
</li>
{{ end }}