2019-11-13 08:06:51 +00:00
|
|
|
{{ if .Site.Params.custom_js }}
|
|
|
|
{{ range .Site.Params.custom_js }}
|
2019-11-06 16:47:35 +00:00
|
|
|
{{ $custom_template := resources.Get . }}
|
|
|
|
{{ if $custom_template }}
|
|
|
|
{{ $custom_js := $custom_template | resources.Minify | resources.Fingerprint }}
|
|
|
|
<script defer src="{{ $custom_js.RelPermalink }}"></script>
|
|
|
|
{{ end }}
|
2019-11-13 08:06:51 +00:00
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|