mirror of
https://git.adityakumar.xyz/hugo-theme-introduction.git
synced 2024-11-09 23:09:47 +00:00
12 lines
569 B
HTML
12 lines
569 B
HTML
{{ $jQuery := resources.Get "vendor/jquery/jquery-3.5.1.min.js" }}
|
|
{{ $index := resources.Get "js/index.js" | minify }}
|
|
{{ $scripts := slice $jQuery $index | resources.Concat "js/bundle.js" | fingerprint }}
|
|
<script src="{{ $scripts.Permalink }}" integrity="{{ $scripts.Data.Integrity }}"></script>
|
|
|
|
{{ template "_internal/google_analytics_async.html" . }}
|
|
|
|
<!-- Custom JavaScript -->
|
|
{{ range .Site.Params.customJS -}}
|
|
{{ $script := resources.Get . | minify }}
|
|
<script src="{{ $script.Permalink }}" integrity="{{ $script.Data.Integrity }}"></script>
|
|
{{- end }}
|