LoveIt/layouts/partials/head/seo.html

111 lines
3.6 KiB
HTML
Raw Normal View History

{{- with .Site.Params.verification.google -}}
<meta name="google-site-verification" content="{{ . }}" />
{{- end -}}
{{- with .Site.Params.verification.bing -}}
<meta name="msvalidate.01" content="{{ . }}" />
{{- end -}}
{{- with .Site.Params.verification.yandex -}}
<meta name="yandex-verification" content="{{ . }}" />
{{- end -}}
{{- with .Site.Params.verification.pinterest -}}
<meta name="p:domain_verify" content="{{ . }}" />
{{- end -}}
{{- with .Site.Params.verification.baidu -}}
<meta name="baidu-site-verification" content="{{ . }}" />
{{- end -}}
{{- /* Home SEO */ -}}
2020-01-31 15:53:04 +01:00
{{- if .IsHome -}}
2019-08-09 15:25:13 +02:00
<script type="application/ld+json">
{
2020-01-31 15:53:04 +01:00
"@context": "http://schema.org",
"@type": "WebSite",
"url": "{{ relLangURL `/` }}",
2020-01-31 15:53:04 +01:00
{{- with .Site.Author.name -}}
"author": {
"@type": "Person",
"name": "{{ . }}"
},
{{- end -}}
{{- with .Site.Params.description -}}
"description": "{{ . }}",
{{- end -}}
{{- with .Site.Params.image -}}
"image": "{{ .url | absURL }}",
{{- end -}}
{{- with .Site.Params.logo -}}
"thumbnailUrl": "{{ .url | absURL }}",
{{- end -}}
{{- with .Site.Copyright -}}
"license": "{{ . }}",
{{- end -}}
"name": "{{ .Site.Title }}"
2019-02-03 12:30:44 +01:00
}
2019-08-09 15:25:13 +02:00
</script>
{{- /* Page SEO */ -}}
{{- else if .IsPage -}}
2019-08-09 15:25:13 +02:00
<script type="application/ld+json">
{
2020-01-31 15:53:04 +01:00
"@context": "http://schema.org",
"@type": "BlogPosting",
"headline": "{{ .Title }}",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "{{ .Permalink }}"
2019-08-09 15:25:13 +02:00
},
2020-01-31 15:53:04 +01:00
{{- if ge (.Param "lua.image.width") 696 -}}
"image": {
"@type": "ImageObject",
"url": "{{ .Param "lua.image.url" | absURL }}",
"width": {{ .Param "lua.image.width" }},
"height": {{ .Param "lua.image.height" }}
},
{{- else if ge .Site.Params.image.width 696 -}}
"image": {
"@type": "ImageObject",
"url": "{{ .Site.Params.image.url | absURL }}",
"width": {{ .Site.Params.image.width }},
"height": {{ .Site.Params.image.height }}
},
{{- end -}}
"genre": "{{ .Type }}",
{{- with .Params.tags -}}
"keywords": "{{ delimit . ", " }}",
{{- end -}}
"wordcount": {{ .WordCount }},
"url": "{{ .Permalink }}",
{{- if not .PublishDate.IsZero -}}
2020-02-18 09:22:24 +01:00
"datePublished": "{{ .PublishDate.Format "2006-01-02T15:04:05-07:00" }}",
2020-01-31 15:53:04 +01:00
{{- else if not .Date.IsZero -}}
2020-02-18 09:22:24 +01:00
"datePublished": "{{ .Date.Format "2006-01-02T15:04:05-07:00" }}",
2020-01-31 15:53:04 +01:00
{{- end -}}
{{- with .Lastmod -}}
2020-02-18 09:22:24 +01:00
"dateModified": "{{ .Format "2006-01-02T15:04:05-07:00" }}",
2020-01-31 15:53:04 +01:00
{{- end -}}
{{- with .Site.Copyright -}}
"license": "{{ . }}",
{{- end -}}
{{- with .Site.Params.publisher -}}
"publisher": {
"@type": "Organization",
"name": "{{ .name }}",
"logo": {
"@type": "ImageObject",
"url": "{{ .logo.url | absURL }}",
"width": {{ .logo.width }},
"height": {{ .logo.height }}
}
},
{{- end -}}
{{- with .Site.Author.Name -}}
"author": {
"@type": "Person",
"name": "{{ . }}"
},
{{- end -}}
"description": "{{ .Description }}"
2019-08-09 15:25:13 +02:00
}
</script>
2020-02-06 17:10:00 +01:00
{{- end -}}