fix: fix access to data assets in render hook

Site variables in markdown render hooks or partials need to be accessed
via global site function or .Page object.
This commit is contained in:
Robert Kaussow 2022-11-16 09:07:39 +01:00
parent 4dc4c9e4eb
commit 38be0c5d15
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0

View File

@ -1,7 +1,7 @@
<!-- prettier-ignore-start -->
{{ if not (.Page.Scratch.Get "mermaid") }}
<!-- Include mermaid only first time -->
<script defer src="{{ index (index .Site.Data.assets "mermaid.js") "src" | relURL }}"></script>
<script defer src="{{ index (index site.Data.assets "mermaid.js") "src" | relURL }}"></script>
{{ .Page.Scratch.Set "mermaid" true }}
{{ end }}
<!-- prettier-ignore-end -->