blob: f2ef3bade6d5d50235180d4d984885d1ea092336 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{{/* */}}
<head prefix="og: http://ogp.me/ns#; dc: http://purl.org/dc/terms/#">
{{- $description := print .Params.Description -}}
{{- if or .IsHome (eq .Params.Description "") (not .Params.Description) -}}
{{ $description = site.Params.Description }}
{{- end -}}
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1.0,shrink-to-fit=no">
<link rel="canonical" href="{{ .Permalink }}">
<title>{{ block "title" . }}{{ if .IsHome }}{{ site.Title }}{{ else }}{{ with .Params.Title }}{{ . }} - {{ end }}{{ site.Title }}{{ end }}{{ end }}</title>
<meta name="description" content="{{ $description }}">
<meta name="author" content="{{ (partial "author.html" . ) }}">
{{ hugo.Generator }}
{{- /* Misc */}}
{{ template "partials/templates/doublinecore.html" . }}
{{ template "partials/templates/opengraph.html" . }}
{{ partial "styles.html" . -}}
{{ partial "scripts.html" . -}}
<link rel="apple-touch-icon-precomposed" sizes="180x180" href="{{ "apple-touch-icon-precomposed.png" | relURL }}">
<link rel="shortcut icon" href="{{ "favicon.ico" | relURL }}">
<!-- RSS -->
{{- with .OutputFormats.Get "rss" }}
{{ printf `<link rel="%s" type="%s" href="%s" title="%s">` .Rel .MediaType.Type .RelPermalink $.Site.Title | safeHTML }}
{{- end }}
</head>
|