8 lines
533 B
HTML
8 lines
533 B
HTML
{{ if .Site.IsServer }}
|
|
{{ $style := resources.Get "css/styles.css" | postCSS (dict "config" "./assets/css/dev/postcss.config.js") }}
|
|
<link rel="stylesheet" href="{{ $style.Permalink }}">
|
|
{{ else }}
|
|
{{ $style := resources.Get "css/styles.css" | postCSS (dict "config" "./assets/css/postcss.config.js") | minify | fingerprint }}
|
|
<link rel="stylesheet" href="{{ $style.Permalink }}" integrity="{{ $style.Data.Integrity }}">
|
|
{{ end }}
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> |