blob: d0358a1a5a3a0ff70ec0d7b3d7c66f0a79b22fbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!-- Basic Meta -->
<meta name="author" content="{{ site.Params.author.name | default site.Title }}">
<meta name="robots" content="index, follow">
<!-- Open Graph (OG) -->
<meta property="og:title" content="{{ .Title | default site.Title }}">
<meta property="og:description" content="{{ .Description | default .Summary }}">
<meta property="og:type" content="{{ if .IsHome }}website{{ else }}article{{ end }}">
<meta property="og:url" content="{{ .Permalink }}">
<meta property="og:site_name" content="{{ site.Title }}">
{{- with .Params.images }}
<meta property="og:image" content="{{ (index . 0) | absURL }}">
{{- end }}
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="{{ .Title | default site.Title }}">
<meta name="twitter:description" content="{{ .Description | default .Summary }}">
{{- with .Params.images }}
<meta name="twitter:image" content="{{ (index . 0) | absURL }}">
{{- end }}
|