mirror of
https://github.com/matrix-org/matrix-spec
synced 2026-02-21 13:33:44 +01:00
A big change for template paths landed in Hugo 0.146.0. In `layouts`, we: - remove `_default` and move everything in it directly under `layouts` - rename `partials` and `shortcodes` to `_partials` and `_shortcodes` - adapt to Hugo and docsy changes about the render-heading hook. We don't need a copy of the heading self-link template now that it is defined as a partial. - update `docs/baseof.html` to match a change upstream - split `docs/changelog.html` because it doesn't work for the section page anymore. We create a `changelog-index` layout for this. Signed-off-by: Kévin Commaille <zecakeh@tedomum.fr>
43 lines
1.6 KiB
HTML
43 lines
1.6 KiB
HTML
{{- /*
|
|
|
|
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 -}}
|
|
<div class="td-content">
|
|
<h1>{{ .Title }}</h1>
|
|
|
|
<table class="release-info">
|
|
{{ $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 -}}
|
|
<tr><th>Git commit</th><td><a href="{{ $commitLink }}">{{ $commitLink }}</a></td>
|
|
{{ if ne $version "unstable" }}
|
|
<tr><th>Release date</th><td>{{ .Date | time.Format ":date_long" }}</td>
|
|
{{ end -}}
|
|
{{ $checklist := .OutputFormats.Get "checklist" -}}
|
|
<tr><th>Checklist</th><td><a href="{{ $checklist.RelPermalink }}">checklist.md</a></td>
|
|
</table>
|
|
|
|
{{ .Content }}
|
|
</div>
|
|
{{ end }}
|