前言 #
最近在 Hugo 創建了幾個 Shortcode ,許多有導入 JavaScript,於是做了一個 Partial 範本方便以後快速使用。
Partial 範本內容 #
在/layouts/partials下新增prevent-js-reload.html
{{ $id := .id }}
{{ $src := .src }}
{{ $scratchKey := printf "script-loaded-%s" $id }}
{{ if not (.Page.Scratch.Get $scratchKey) }}
{{ .Page.Scratch.Set $scratchKey true }}
<script src="{{ $src | relURL }}" defer></script>
{{ end }}