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

13 lines
382 B
HTML
Raw Normal View History

2023-04-13 17:19:53 -04:00
<div class="generic-con">
2023-04-13 18:38:37 -04:00
<ul style="padding: 0">
2023-04-13 17:19:53 -04:00
{{ range first 3 (where .Site.Pages "Type" "blog").ByDate.Reverse }}
<li style="margin-left: 10px; list-style-type: square;">
2023-04-17 17:00:05 -04:00
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
2023-04-13 17:19:53 -04:00
<p><i>{{ .Summary }}</i></p>
</li>
{{ end }}
2023-04-13 18:38:37 -04:00
</ul>
2024-02-19 15:29:36 -05:00
<a href="/blog">View all blog posts</a>
2022-12-27 21:47:12 -05:00
</div>