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

12 lines
301 B
HTML
Raw Normal View History

2023-03-30 21:47:18 -04:00
<h3>Recent Blog Posts</h3>
<div class="generic-con">
{{ 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 }}
</div>