From 0234865f629d02a363a75727ef5ab56722ff902e Mon Sep 17 00:00:00 2001 From: Hong Xu Date: Fri, 8 Nov 2024 07:50:24 -0800 Subject: [PATCH] Replace thumbnailUrl with logo for json schema (#1488) thumbnailUrl is not part of Organization: https://schema.org/Organization --- layouts/partials/templates/schema_json.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/templates/schema_json.html b/layouts/partials/templates/schema_json.html index ed4d689b..0b6577d0 100644 --- a/layouts/partials/templates/schema_json.html +++ b/layouts/partials/templates/schema_json.html @@ -6,7 +6,7 @@ "name": {{ site.Title }}, "url": {{ site.Home.Permalink }}, "description": {{ site.Params.description | plainify | truncate 180 | safeHTML }}, - "thumbnailUrl": {{ site.Params.assets.favicon | default "favicon.ico" | absURL }}, + "logo": {{ site.Params.assets.favicon | default "favicon.ico" | absURL }}, "sameAs": [ {{- if site.Params.schema.sameAs }} {{ range $i, $e := site.Params.schema.sameAs }}{{ if $i }}, {{ end }}{{ trim $e " " }}{{ end }}