mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
10 lines
440 B
HTML
10 lines
440 B
HTML
<!-- scripts -->
|
|
{{ $scripts := resources.Get "output/js/app.js" | fingerprint }}
|
|
{{ with $scripts }}
|
|
<script type="text/javascript" src="{{ .Permalink | relURL }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous" defer></script>
|
|
{{ $.Scratch.Set "scripts" . }}
|
|
{{end}}
|
|
|
|
|
|
<!-- Place this tag in your head or just before your close body tag. -->
|
|
<script async defer src="https://buttons.github.io/buttons.js"></script>
|