22 lines
709 B
HTML
22 lines
709 B
HTML
<head>
|
|
<meta charset='utf-8'>
|
|
<meta name='viewport' content='width=device-width, initial-scale=1'>
|
|
|
|
{{- $description := partial "data/description" . -}}
|
|
<meta name='description' content='{{ $description }}'>
|
|
|
|
{{- $title := partial "data/title" . -}}
|
|
<title>{{ $title }}</title>
|
|
|
|
<link rel='canonical' href='{{ .Permalink }}'>
|
|
|
|
{{- partial "head/style.html" . -}}
|
|
{{- partial "head/script.html" . -}}
|
|
{{- partial "head/opengraph/include.html" . -}}
|
|
|
|
{{- range .AlternativeOutputFormats -}}
|
|
<link rel="{{ .Rel }}" type="{{ .MediaType.Type }}" href="{{ .Permalink | safeURL }}">
|
|
{{- end -}}
|
|
|
|
{{- partial "head/custom.html" . -}}
|
|
</head> |