hugo-theme-introduction/layouts/partials/footer/scripts.html

7 lines
359 B
HTML
Raw Normal View History

2018-07-26 17:34:02 +00:00
{{ $jQuery := resources.Get "/vendor/jquery/jquery-3.3.1.min.js" }}
{{ $index := resources.Get "/js/index.js" | minify }}
2018-07-18 15:40:58 +00:00
{{ $scripts := slice $jQuery $index | resources.Concat "/js/bundle.js" | fingerprint }}
<script src="{{ $scripts.Permalink }}" integrity="{{ $scripts.Data.Integrity }}"></script>
2018-07-01 08:09:29 +00:00
{{ template "_internal/google_analytics_async.html" . }}