forked from data.coop/website
48 lines
1.6 KiB
HTML
48 lines
1.6 KiB
HTML
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
{{ hugo.Generator }}
|
|
|
|
{{ with .Site.Params.description }}
|
|
<meta name="description" content="{{ . }}">
|
|
{{ end }}
|
|
|
|
{{ $appleTouchIcon := "apple-touch-icon.png" }}
|
|
<link rel="apple-touch-icon" sizes="180x180" href="{{ $appleTouchIcon | absURL }}">
|
|
|
|
{{ $favicon32x32 := "favicon-32x32.png" }}
|
|
<link rel="icon" type="image/png" sizes="32x32" href="{{ $favicon32x32 | absURL }}">
|
|
|
|
{{ $favicon16x16 := "favicon-16x16.png" }}
|
|
<link rel="icon" type="image/png" sizes="16x16" href="{{ $favicon16x16 | absURL }}">
|
|
|
|
{{ $siteWebmanifest := "site.webmanifest" }}
|
|
<link rel="manifest" href="{{ $siteWebmanifest | absURL }}">
|
|
|
|
<link rel="sitemap" href="{{ .Site.SitemapAbsURL }}" />
|
|
|
|
{{ $safariPinnedTab := "safari-pinned-tab.svg" }}
|
|
<link rel="mask-icon" href="{{ $safariPinnedTab | absURL }}" color="{{ .Site.Params.faviconSafariPinnedTabColor }}">
|
|
|
|
<meta name="msapplication-TileColor" content="{{ .Site.Params.faviconMsApplicationTileColor }}">
|
|
|
|
<meta name="theme-color" content="{{ .Site.Params.faviconThemeColor }}">
|
|
|
|
{{ $style := resources.Get "static/css/style.scss" | resources.ToCSS | resources.Minify }}
|
|
<link rel="stylesheet" href="{{ $style.RelPermalink }}">
|
|
|
|
{{ if .IsHome }}
|
|
{{ $homepage := "Home" }}
|
|
{{ with .Site.Menus.nav }}
|
|
{{ range first 1 . }}
|
|
{{ $homepage = .Name }}
|
|
{{ end }}
|
|
{{ end }}
|
|
<title>{{ $homepage }} | {{ .Site.Title }}</title>
|
|
{{ else }}
|
|
<title>{{ .Title }} | {{ .Site.Title }}</title>
|
|
{{ end }}
|
|
|
|
</head>
|