2020-08-22 19:20:08 +08:00
|
|
|
<head>
|
|
|
|
<meta charset='utf-8'>
|
2020-09-12 05:00:19 +08:00
|
|
|
<meta name='viewport' content='width=device-width, initial-scale=1'>
|
|
|
|
|
2020-09-18 03:59:57 +08:00
|
|
|
{{- $description := partialCached "data/description" . .RelPermalink -}}
|
2020-09-12 05:00:19 +08:00
|
|
|
<meta name='description' content='{{ $description }}'>
|
2020-09-12 04:50:30 +08:00
|
|
|
|
2020-09-18 03:59:57 +08:00
|
|
|
{{- $title := partialCached "data/title" . .RelPermalink -}}
|
2020-09-12 05:00:19 +08:00
|
|
|
<title>{{ $title }}</title>
|
|
|
|
|
2020-09-12 03:57:33 +08:00
|
|
|
<link rel='canonical' href='{{ .Permalink }}'>
|
2020-08-22 19:20:08 +08:00
|
|
|
|
2020-09-12 03:57:33 +08:00
|
|
|
{{- partial "head/style.html" . -}}
|
|
|
|
{{- partial "head/script.html" . -}}
|
|
|
|
{{- partial "head/opengraph/include.html" . -}}
|
2020-08-22 19:20:08 +08:00
|
|
|
|
2020-09-12 03:57:33 +08:00
|
|
|
{{- range .AlternativeOutputFormats -}}
|
2020-08-22 19:20:08 +08:00
|
|
|
<link rel="{{ .Rel }}" type="{{ .MediaType.Type }}" href="{{ .Permalink | safeURL }}">
|
2020-09-12 03:57:33 +08:00
|
|
|
{{- end -}}
|
2020-09-12 03:59:05 +08:00
|
|
|
|
2020-09-12 03:57:33 +08:00
|
|
|
{{- partial "head/custom.html" . -}}
|
2020-08-22 19:20:08 +08:00
|
|
|
</head>
|