matrix-spec/layouts/shortcodes/changelog/changelogs.html
Richard van der Hoff ce84f1682c Use Hugo page resources instead of partials for changelogs
... which means we don't need to edit the top-level page for each release.
2022-11-15 19:37:36 +00:00

11 lines
218 B
HTML

{{/*
This template is used to render all of the changelog sections under
"content/changelogs"
*/}}
{{ with .Page.Resources.Match "*.md" }}
{{ range ((sort . "Name" "desc")) }}
{{ .Content }}
{{ end }}
{{ end }}