hugo-theme-termlite/layouts/shortcodes/latest-page-summary.html
Eryn Wells aee96476a7 Add a latest-page-summary shortcode
Produces a summary of the latest page in a given section
2024-07-23 09:13:32 -07:00

4 lines
141 B
HTML

{{- $section := site.GetPage (.Get "section") -}}
{{ range $section.Pages.ByDate.Reverse.Limit 1 }}
{{ .Render "page_summary" }}
{{ end }}