20 lines
872 B
HTML
20 lines
872 B
HTML
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ .Title }} — {{ .Site.Title }}{{ end }}</title>
|
|
<meta name="description" content="{{ with .Description }}{{ . }}{{ else }}{{ with .Site.Params.tagline }}{{ . }}{{ end }}{{ end }}">
|
|
|
|
{{ range .AllTranslations -}}
|
|
<link rel="alternate" hreflang="{{ .Language.Lang }}" href="{{ .Permalink }}">
|
|
{{ end -}}
|
|
<link rel="alternate" hreflang="x-default" href="{{ .Site.Home.Permalink }}">
|
|
|
|
{{ range .AlternativeOutputFormats -}}
|
|
<link rel="{{ .Rel }}" type="{{ .MediaType.Type }}" href="{{ .Permalink }}" title="{{ $.Site.Title }}">
|
|
{{ end -}}
|
|
|
|
{{ with resources.Get "css/main.css" | fingerprint -}}
|
|
<link rel="stylesheet" href="{{ .RelPermalink }}">
|
|
{{- end }}
|
|
|
|
<link rel="icon" href="{{ "logo.svg" | relURL }}" type="image/svg+xml">
|