cyberware/layouts/partials/popover.html

9 lines
354 B
HTML
Raw Normal View History

2022-01-03 18:22:04 +00:00
{{if $.Site.Data.config.enableLinkPreview}}
{{ $js := resources.Get "js/popover.js" | resources.Fingerprint "md5" | resources.Minify }}
<script src="{{ $js.Permalink }}"></script>
2022-01-03 18:18:31 +00:00
<script>
const useContextual = {{ $.Site.Data.config.enableContextualBacklinks }}
initPopover({{strings.TrimRight "/" .Site.BaseURL }}, useContextual)
2022-01-03 18:22:04 +00:00
</script>
{{end}}