2022-10-28 17:20:35 -05:00
|
|
|
<title itemprop="name">{{if .IsHome}} {{ $.Site.Params.description }} | {{ .Title }}
|
|
|
|
{{else}} {{ .Title }} | {{ .Site.Title }} {{end}}
|
|
|
|
</title>
|
2022-10-30 15:34:06 -05:00
|
|
|
<meta name="description" content="{{ if .Description }}{{ .Description }}{{ else }}{{ .Site.Params.description }}{{ end }}" />
|
2022-10-28 18:38:25 -05: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-28 18:31:09 -05:00
|
|
|
<meta property="og:type" content="website" />
|
2022-10-28 18:42:58 -05:00
|
|
|
<meta property="og:title" content="{{ .Site.Title }}" />
|
2022-10-28 18:31:09 -05: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-28 18:38:25 -05:00
|
|
|
<meta property="og:image" content="{{ .Params.Site.BaseURL }}{{ .Params.og_image | relURL }}" />
|
2022-10-28 18:31:09 -05:00
|
|
|
<meta property="og:image:secure_url" content="{{ .Params.og_image | absURL }}" />
|
|
|
|
{{ else }}
|
2022-10-28 18:38:25 -05:00
|
|
|
<meta property="og:image" content="{{ .Params.Site.BaseURL }}{{ .Site.Params.og_image | relURL }}" />
|
2022-10-28 18:31:09 -05:00
|
|
|
<meta property="og:image:secure_url" content="{{ .Site.Params.og_image | absURL }}" />
|
|
|
|
{{ end }}
|
|
|
|
<meta property="og:type" content="website" />
|