blob: a3af22b852519ac8aea17c812e5f6d139d364c4a (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
{{/* */}}
<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 -}}
{{- $author := print .Site.Author.name -}}
{{- if .Params.author -}}{{ $author = .Params.author }}{{- 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" . }}{{ with .Params.Title }}{{ . }} - {{ end }}{{ .Site.Title }}{{ end }}</title>
<meta name="description" content="{{ $description }}">
{{ hugo.Generator }}
<!-- Dublin Core metadata for Zotero -->
<meta property="dc:title" content="{{ .Title }}">
<meta property="dc:creator" content="{{ $author }}">
<meta property="dc:identifier" content="{{ .Permalink }}">
{{- if .Params.editor }}<meta property="dc:contributor" content="{{ .Params.editor }}">{{ end }}
{{- if .Params.date }}<meta property="dc:date" content="{{ .Params.date }}">{{ end }}
{{- if .Params.rights }}<meta property="dc:rights" content="{{ .Params.rights }}">{{ end }}
<meta property="dc:source" content="{{ if .Params.source }}{{ .Params.source }}{{ else }}{{ .Site.Title }}{{ end }}">
<!-- Open Graph metadata -->
<meta property="og:title" content="{{ .Title }}">
<meta property="og:url" content="{{ .Permalink }}">
{{/* TODO: Check for reatured image */ -}}
<meta property="og:image" content="{{ "img/open-graph-logo.png" | absURL }}">
<meta property="og:image:width" content="200">
<meta property="og:image:height" content="200">
{{- /* TODO: add fb:admins and fb:app_id */ -}}
<!-- meta property="fb:admins" content="" -->
<!-- meta property="fb:app_id" content="" -->
{{- /* TODO: add ability to render 'article' type */ -}}
<meta property="og:description" content="{{ .Site.Params.Description }}">
<meta property="og:type" content="website">
{{ 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>
|