| | |
| | | <meta charset="utf-8"> |
| | | <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> |
| | | <meta name="viewport" content="width=device-width, initial-scale=1"> |
| | | {{- hugo.Generator }} |
| | | {{- partial "favicons.html" . }} |
| | | {{- $iconsPath := "/favicons/" }} |
| | | <link rel="apple-touch-icon" sizes="180x180" href='{{ absURL (printf "%sapple-touch-icon.png" $iconsPath) }}'> |
| | | <link rel="icon" type="image/png" sizes="32x32" href='{{ absURL (printf "%sfavicon-32x32.png" $iconsPath) }}'> |
| | | <link rel="icon" type="image/png" sizes="16x16" href='{{ absURL (printf "%sfavicon-16x16.png" $iconsPath) }}'> |
| | | <link rel="manifest" href='{{ absURL (printf "%ssite.webmanifest" $iconsPath) }}'> |
| | | <link rel="mask-icon" href='{{ absURL (printf "%ssafari-pinned-tab.svg" $iconsPath) }}' color="#004750"> |
| | | <link rel="shortcut icon" href='{{ absURL (printf "%sfavicon.ico" $iconsPath) }}'> |
| | | <meta name="msapplication-TileColor" content="#ffffff"> |
| | | <meta name="msapplication-config" content='{{ absURL (printf "%sbrowserconfig.xml" $iconsPath) }}'> |
| | | <meta name="theme-color" content="#ffffff"> |
| | | |
| | | <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 }} |
| | | |
| | | {{- partial "opengraph.html" . }} |
| | | |
| | | {{- $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" }} |