matrix-spec/layouts/_partials/hooks/body-end.html
Johannes Marbach d193c5536f Add version picker in the navbar
Co-authored-by: Andrew Morgan <andrew@amorgan.xyz>
Signed-off-by: Johannes Marbach <n0-0ne+github@mailbox.org>
2025-12-04 14:13:41 +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 }}