From 7b86f6791f359bb50dc055d6c5736b98f70c3855 Mon Sep 17 00:00:00 2001 From: Ariel Costas Guerrero <94913521+arielcostas@users.noreply.github.com> Date: Tue, 16 Apr 2024 21:02:19 +0200 Subject: Fix schema --- layouts/partials/ld/post.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'layouts/partials/ld/post.html') diff --git a/layouts/partials/ld/post.html b/layouts/partials/ld/post.html index c4d0ae4..0afa7ad 100644 --- a/layouts/partials/ld/post.html +++ b/layouts/partials/ld/post.html @@ -4,9 +4,9 @@ "@type": "BlogPosting", "@id": {{ printf "%s" .Page.Permalink }}, "url": {{ printf "%s" .Page.Permalink }}, - "headline": {{ printf "%s" .Title | safeJS }}, + "headline": "{{ printf "%s" .Title | safeJS }}", {{- with .Params.summary -}} - "description": {{ printf "%s" . | safeJS }}, + "description": "{{ printf "%s" . | safeJS }}", {{- end }} {{ with .Params.date -}} "datePublished": {{ time.Format "2006-01-02T15:04:05-07:00" . }}, -- cgit v1.3