17 lines
595 B
HTML
17 lines
595 B
HTML
<meta charset="utf-8" />
|
|
<title>
|
|
{{ .Title }}
|
|
</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="description" content="{{ .Description }}" />
|
|
{{/* styles */}}
|
|
{{ $options := dict "inlineImports" true }}
|
|
{{ $styles := resources.Get "styles/styles.css" }}
|
|
{{ $styles = $styles | resources.PostCSS $options }}
|
|
{{ if hugo.IsProduction }}
|
|
{{ $styles = $styles | minify | fingerprint | resources.PostProcess }}
|
|
{{/* {{ else }}
|
|
<link href="/tailwindcss.css" rel="stylesheet" /> */}}
|
|
{{ end }}
|
|
<link href="{{ $styles.RelPermalink }}" rel="stylesheet" />
|