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

12 lines
301 B
HTML
Raw Normal View History

2022-12-27 21:47:12 -05: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;">
2022-12-27 21:47:12 -05:00
<a href="{{ .Permalink }}">{{ .Title }}</a>
<p><i>{{ .Summary }}</i></p>
2022-12-27 21:47:12 -05:00
</li>
{{ end }}
</div>