hugo-theme-stack-stars/layouts/partials/head/head.html

18 lines
673 B
HTML
Raw Normal View History

2020-08-22 11:20:08 +00:00
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1'>
2020-09-11 19:57:33 +00:00
<meta name='description' content='{{ chomp (partial "data/description" . | plainify ) }}'>
2020-08-22 11:20:08 +00:00
<title>{{ (trim (partial "data/title" .) "\n" ) | safeHTML }}</title>
2020-09-11 19:57:33 +00:00
<link rel='canonical' href='{{ .Permalink }}'>
2020-08-22 11:20:08 +00:00
2020-09-11 19:57:33 +00:00
{{- partial "head/style.html" . -}}
{{- partial "head/script.html" . -}}
{{- partial "head/opengraph/include.html" . -}}
2020-08-22 11:20:08 +00:00
2020-09-11 19:57:33 +00:00
{{- range .AlternativeOutputFormats -}}
2020-08-22 11:20:08 +00:00
<link rel="{{ .Rel }}" type="{{ .MediaType.Type }}" href="{{ .Permalink | safeURL }}">
2020-09-11 19:57:33 +00:00
{{- end -}}
2020-09-11 19:57:33 +00:00
{{- partial "head/custom.html" . -}}
2020-08-22 11:20:08 +00:00
</head>