{{- /* Only enable asset bundling in production */ -}} {{- $style := resources.Get "css/main.css" -}} {{- /* The custom stylesheet. */ -}} {{- $custom_styles := resources.Get "css/extend.css" -}} {{- /* The order is important since CSS needs orders. Which means the custom stylesheet should be the last to be concatenated. */ -}} {{- $style = slice $style $custom_styles | resources.Concat "css/index.css" -}} {{- if hugo.IsProduction }} {{- $style = $style | resources.Minify | resources.Fingerprint -}} {{- end }} {{- /* Some sane tags default */ -}} {{ hugo.Generator }} {{- with .Site.Author }} {{- $names := slice }} {{- range . }}{{ $names = $names | append .name }}{{ end }} {{- end }} {{- template "_internal/twitter_cards.html" . }} {{- template "_internal/opengraph.html" . }} {{- template "_internal/schema.html" . }} {{- /* Linking all of the output formats for discovery. */ -}} {{- range .OutputFormats }} {{- printf "" .Rel .MediaType.Type .Permalink | safeHTML }} {{- end }} {{- if hugo.IsProduction }} {{ template "_internal/google_analytics_async.html" . }} {{ template "_internal/disqus.html" . }} {{- end }}