aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/partials/seo_tags.html
blob: 96d390e873786b001e2dc896dee6df3119d2a7af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<link rel=canonical href={{ .Permalink }}>
<meta name=title content="{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ .Title }}{{ end }}">
<meta name=description content="{{ if .Description }}{{ .Description }}{{ else if .IsPage }}{{ .Summary | plainify | truncate 120 }}{{ else }}{{ .Site.Params.Description }}{{ end }}">

<meta property=og:site_name content="{{ .Site.Title }}">
<meta property=og:title content="{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ .Title }}{{ end }}">
<meta property=og:url content="{{ .Permalink }}">
<meta property=og:description content="{{ if .Description }}{{ .Description }}{{ else if .IsPage }}{{ .Summary | plainify | truncate 120 }}{{ else }}{{ .Site.Params.Description }}{{ end }}">
<meta property=og:type content="{{ if .IsPage }}article{{ else }}website{{ end }}">

<meta name=twitter:card content="summary">
<meta name=twitter:title content="{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ .Title }}{{ end }}">
<meta name=twitter:description content="{{ if .Description }}{{ .Description }}{{ else if .IsPage }}{{ .Summary | plainify | truncate 120 }}{{ else }}{{ .Site.Params.Description }}{{ end }}">