OldWoodMan/layouts/partials/head.html

12 lines
373 B
HTML
Raw Normal View History

2024-03-22 09:12:58 -06:00
{{ $css := resources.Get "css/styles.css" }}
{{ if hugo.IsProduction}}
{{ $css = $css | minify | fingerprint }}
{{ end }}
<link rel="stylesheet" href="{{ $css.RelPermalink }}"></link>
{{ with site.Params.plausible_domain }}
<script defer data-domain="{{ . }}" src="https://plausible.io/js/plausible.js"></script>
{{ end }}
2024-03-22 10:11:01 -06:00
Content-Security-Policy: default-src 'self'
2024-03-22 09:12:58 -06:00