From 62b39f7c4d6438fd6fe996560571ca4c5578ff94 Mon Sep 17 00:00:00 2001 From: Humberto Rocha Date: Wed, 31 Jul 2019 16:18:09 -0300 Subject: Improve meta info --- layouts/partials/blog-post-jsonld.html | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) (limited to 'layouts/partials/blog-post-jsonld.html') diff --git a/layouts/partials/blog-post-jsonld.html b/layouts/partials/blog-post-jsonld.html index 5127ffc..30a79bd 100644 --- a/layouts/partials/blog-post-jsonld.html +++ b/layouts/partials/blog-post-jsonld.html @@ -1,21 +1,18 @@ { "@context": "http://schema.org", "@type": "BlogPosting", - "headline": "{{ .Title }}", "url": "{{ .Permalink }}", - "datePublished": "{{ .PublishDate.Format "2006-01-02" }}", + "headline": "{{ .Title }}", "description": "{{ .Description }}", + "datePublished": "{{ .PublishDate.Format "2006-01-02" }}", {{ if .Params.Tags }} - "keywords": "{{ delimit .Params.Tags " " }}", + "keywords": "{{ delimit .Params.Tags "," }}", + {{ end }} + {{ if .Params.shareImage }} + "image": "{{ .Params.shareImage | absURL }}", + {{ else }} + "image": "{{ .Site.Params.siteLogo | absURL }}", {{ end }} - "image": { - "@type": "ImageObject", - {{ if .Params.shareImage }} - "url": "{{ .Params.shareImage | absURL }}" - {{ else }} - "url": "{{ .Site.Params.siteLogo | absURL }}" - {{ end }} - }, "author": { "@type": "Person", "name": "{{ .Site.Params.author.name }}", -- cgit v1.2.3