10 lines
328 B
HTML
10 lines
328 B
HTML
|
|
||
|
{{ $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 }}
|