matrix-spec/layouts/_partials/hooks/body-end.html
Johannes Marbach 5fe78ced53 Convert versions.js to a template to resolve the correct path of /changelog/historical
Signed-off-by: Johannes Marbach <n0-0ne+github@mailbox.org>
2025-12-03 08:59:00 +01:00

18 lines
547 B
HTML

{{/*
This template is included at the end of each page's `<body>`.
We're using it here to highlight and scroll the ToC in the sidebar to match
the place we are at in the document.
*/}}
{{ $toc := resources.Get "js/toc.js" -}}
<script defer src="{{ $toc.RelPermalink }}"></script>
{{- /* Load the versions script template, run and publish it */ -}}
{{ with resources.Get "js/versions.template.js" }}
{{ with resources.ExecuteAsTemplate "js/versions.js" $ . }}
<script defer src="{{ .RelPermalink }}"></script>
{{ end }}
{{ end }}