<meta charset="utf-8">
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
{{- hugo.Generator }}
|
{{- partial "favicons.html" . }}
|
<title>{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{ . }} | {{ end }}{{ .Site.Title }}{{ end }}</title>
|
{{- template "_internal/opengraph.html" . -}}
|
{{- template "_internal/google_news.html" . -}}
|
{{- template "_internal/schema.html" . -}}
|
{{- template "_internal/twitter_cards.html" . -}}
|
{{- if eq (getenv "HUGO_ENV") "production" }}
|
{{- template "_internal/google_analytics_async.html" . }}
|
{{- end }}
|
|
{{- $options := (dict "targetPath" "css/styles.css" "outputStyle" "compressed" "enableSourceMap" "true") -}}
|
{{- $styles := resources.Get "sass/main.sass" | resources.ExecuteAsTemplate "main.sass" . | resources.ToCSS $options | resources.Fingerprint "sha512" }}
|
<link rel = 'stylesheet' href = '{{ $styles.Permalink }}' integrity = '{{ $styles.Data.Integrity }}'>
|