2022-10-29 00:20:35 +02:00
|
|
|
<title itemprop="name">{{if .IsHome}} {{ $.Site.Params.description }} | {{ .Title }}
|
|
|
|
{{else}} {{ .Title }} | {{ .Site.Title }} {{end}}
|
|
|
|
</title>
|
2022-10-30 21:34:06 +01:00
|
|
|
<meta name="description" content="{{ if .Description }}{{ .Description }}{{ else }}{{ .Site.Params.description }}{{ end }}" />
|
2022-10-29 01:38:25 +02:00
|
|
|
<meta property="og:title" content="{{ .Title }} | {{ .Site.Title }}" />
|
|
|
|
<meta name="twitter:title" content="{{ .Title }} | {{ .Site.Title }}" />
|
|
|
|
<meta itemprop="name" content="{{ .Title }} | {{ .Site.Title }}" />
|
|
|
|
<meta name="application-name" content="{{ .Title }} | {{ .Site.Title }}" />
|
2022-10-29 01:31:09 +02:00
|
|
|
<meta property="og:description"
|
|
|
|
content="{{ if .Description }}{{ .Description }}{{ else }}{{ .Site.Params.description }}{{ end }}" />
|
|
|
|
<meta property="og:site_name" content="{{ .Site.Title }}" />
|
|
|
|
<meta property="og:url" content="{{ .Permalink }}" />
|
|
|
|
<meta property="og:locale" content="en">
|
2023-07-25 01:22:58 +02:00
|
|
|
<meta property="og:image" content="{{ if .Params.featured_image }}{{ .Params.featured_image | relURL }}{{ else }}{{ .Site.Params.og_image | relURL }}{{ end }}" />
|
|
|
|
<meta property="og:image:secure_url" content="{{ if .Params.featured_image }}{{ .Params.featured_image | absURL }}{{ else }}{{ .Site.Params.og_image | absURL }}{{ end }}" />
|
|
|
|
<meta property="og:type" content="{{if .IsHome}}website{{else}}article{{end}}" />
|