matrix-spec/layouts/shortcodes/changelog/changelogs.html
2022-11-15 23:03:38 +00:00

11 lines
225 B
HTML

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