24 lines
1 KiB
HTML
24 lines
1 KiB
HTML
|
{{ $main := resources.Get "js/main.js" }}
|
||
|
{{ $menu := resources.Get "js/menu.js" }}
|
||
|
{{ $prism := resources.Get "js/prism.js" }}
|
||
|
{{ $theme := resources.Get "js/theme.js" }}
|
||
|
{{ $secureJS := slice $main $menu $prism $theme | resources.Concat "bundle.js" | resources.Minify | resources.Fingerprint "sha512" }}
|
||
|
<script type="text/javascript" src="{{ $secureJS.RelPermalink }}" integrity="{{ $secureJS.Data.Integrity }}"></script>
|
||
|
|
||
|
{{- if .Site.GoogleAnalytics }}
|
||
|
<script>
|
||
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||
|
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
||
|
ga('create', '{{.Site.GoogleAnalytics}}', 'auto');
|
||
|
ga('send', 'pageview');
|
||
|
</script>
|
||
|
{{- end}}
|
||
|
|
||
|
{{ range $val := $.Site.Params.customJS }}
|
||
|
{{ if gt (len $val) 0 }}
|
||
|
<script src="{{ $val }}"></script>
|
||
|
{{ end }}
|
||
|
{{ end }}
|