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 }}" />
|
|
|
|
<meta property="og:site_name" content="{{ .Site.Params.sitename }}" />
|
2022-10-29 01:31:09 +02:00
|
|
|
<meta property="og:type" content="website" />
|
2022-10-29 01:42:58 +02:00
|
|
|
<meta property="og:title" content="{{ .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">
|
|
|
|
{{ if .Params.og_image }}
|
2022-10-29 01:38:25 +02:00
|
|
|
<meta property="og:image" content="{{ .Params.Site.BaseURL }}{{ .Params.og_image | relURL }}" />
|
2022-10-29 01:31:09 +02:00
|
|
|
<meta property="og:image:secure_url" content="{{ .Params.og_image | absURL }}" />
|
|
|
|
{{ else }}
|
2022-10-29 01:38:25 +02:00
|
|
|
<meta property="og:image" content="{{ .Params.Site.BaseURL }}{{ .Site.Params.og_image | relURL }}" />
|
2022-10-29 01:31:09 +02:00
|
|
|
<meta property="og:image:secure_url" content="{{ .Site.Params.og_image | absURL }}" />
|
|
|
|
{{ end }}
|
|
|
|
<meta property="og:type" content="website" />
|