erynwells.me/layouts/shortcodes/home/latest.html
Eryn Wells 5c2942bc56 Add a home/latest widget
Add a shortcode and some styles for a two column, two row grid of latest posts.
2024-10-20 09:19:14 -07:00

19 lines
523 B
HTML

{{- $blogSection := site.GetPage "blog" -}}
{{- $latestBlogPosts := $blogSection.Pages.ByDate.Reverse.Limit 2 -}}
{{- $photosSection := site.GetPage "photos" -}}
{{- $latestPhotoPosts := $photosSection.Pages.ByDate.Reverse.Limit 1 -}}
<div class="home-latest">
{{ range $latestBlogPosts }}
<div class="home-latest__blog">
{{ .Render "page_summary" }}
</div>
{{ end }}
{{ range $latestPhotoPosts }}
<div class="home-latest__photo">
{{ .Render "page_summary" }}
</div>
{{ end }}
</div>