{{- /* Template to render a page with a `changelog` layout. This adds a table at the top of the page with information about the release: * A link to the matrix-spec repository at the time of the release, with the version taken from the `linkTitle` in the frontmatter of the page, unless it is the unstable changelog. * The date of the release, taken from the `date` in the frontmatter of the page, unless it is the unstable changelog. * A link to the markdown checklist format of the changelog. The `outputs` in the frontmatter of the page must include `checklist`. */ -}} {{ define "main" }} {{ $version := lower .LinkTitle -}}

{{ .Title }}

{{ $rev := $version }} {{ if eq $version "unstable" -}} {{- /* Extract the git SHA from the frontmatter of the changelog, where it was stashed by `generate-changelog.sh`. */ -}} {{ $rev = .Params.commit -}} {{ end -}} {{ $commitLink := printf "https://github.com/matrix-org/matrix-spec/tree/%s" $rev -}} {{ if ne $version "unstable" }} {{ end -}} {{ $checklist := .OutputFormats.Get "checklist" -}}
Git commit{{ $commitLink }}
Release date{{ .Date | time.Format ":date_long" }}
Checklistchecklist.md
{{ .Content }}
{{ end }}