Welcome to mirror list, hosted at ThFree Co, Russian Federation.

scripts.html « footer « partials « layouts - github.com/vickylaixy/hugo-theme-introduction.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bdf93a9a740d25aa889d87c30c92ceece2dee65a (plain)
1
2
3
4
5
6
7
8
9
10
{{ $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>

<!-- Custom JavaScript -->
{{ range .Site.Params.customJS -}}
    {{ $script := resources.Get . | minify }}
    <script src="{{ $script.Permalink }}" integrity="{{ $script.Data.Integrity }}"></script>
{{- end }}