2020-01-05 14:36:30 +00:00
|
|
|
<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 }}
|
|
|
|
|
2020-05-18 08:01:35 +00:00
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="{{ "/static/img" | absURL }}/apple-touch-icon.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="{{ "/static/img" | absURL }}/favicon-32x32.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href="{{ "/static/img" | absURL }}/favicon-16x16.png">
|
|
|
|
<link rel="manifest" href="{{ "" | absURL }}/site.webmanifest">
|
|
|
|
<link rel="mask-icon" href="{{ "/static/img" | absURL }}/safari-pinned-tab.svg" color="#4b3aba">
|
|
|
|
<meta name="msapplication-TileColor" content="#4b3aba">
|
|
|
|
<meta name="theme-color" content="#4b3aba">
|
2020-01-05 14:36:30 +00:00
|
|
|
|
2020-04-05 21:03:14 +00:00
|
|
|
{{ $style := resources.Get "static/css/style.scss" | resources.ToCSS | resources.Minify }}
|
|
|
|
<link rel="stylesheet" href="{{ $style.RelPermalink }}">
|
2020-01-05 14:36:30 +00:00
|
|
|
|
|
|
|
{{ 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 }}
|
|
|
|
|
2020-04-05 21:03:14 +00:00
|
|
|
</head>
|