diff options
Diffstat (limited to 'themes/hugo-pt2021/layouts/partials/head.html')
-rw-r--r-- | themes/hugo-pt2021/layouts/partials/head.html | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/themes/hugo-pt2021/layouts/partials/head.html b/themes/hugo-pt2021/layouts/partials/head.html index 37ec18c..56468e4 100644 --- a/themes/hugo-pt2021/layouts/partials/head.html +++ b/themes/hugo-pt2021/layouts/partials/head.html @@ -10,7 +10,7 @@ {{- end -}} </title> - {{/* set stylesheet */}} + {{/* load stylesheet */}} {{- $options := (dict "targetPath" "style.css" "outputStyle" "compressed" "enableSourceMap" false) -}} {{- $style := resources.Get "style.sass" | resources.ToCSS $options | resources.Fingerprint -}} <link @@ -20,6 +20,15 @@ integrity='{{ $style.Data.Integrity }}' /> + {{/* load javascript */}} + {{- $script := resources.Get "script.js" | js.Build "script.js" | minify | fingerprint -}} + <script + type='text/javascript' + src='{{ $script.Permalink }}' + integrity='{{ $script.Data.Integrity }}' + defer + ></script> + {{/* add feeds */}} {{- range .AlternativeOutputFormats -}} {{- printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML -}} |