mirror of
https://github.com/matrix-org/matrix-spec
synced 2026-01-06 16:03:42 +01:00
16 lines
495 B
HTML
16 lines
495 B
HTML
{{/*
|
|
|
|
This template is used to provide different content for the unstable spec
|
|
version and for a versioned release.
|
|
|
|
*/}}
|
|
|
|
{{ $status := .Site.Params.version.status }}
|
|
|
|
{{ if eq $status "unstable"}}
|
|
<p>This is the <strong>unstable</strong> version of the Matrix specification.</p>
|
|
<p>This changelog lists changes made since the last release of the specification.</p>
|
|
{{ else }}
|
|
<p>This is version <strong>{{ .Site.Params.version.number }}</strong> of the Matrix specification.</p>
|
|
{{ end }}
|