From d002c912d667c75e3f08ebcc87c0ef4a345f2d89 Mon Sep 17 00:00:00 2001 From: Will Faught Date: Sat, 8 Feb 2025 22:23:28 -0800 Subject: [PATCH] Add articleBody itemprop --- layouts/partials/paige/page.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/layouts/partials/paige/page.html b/layouts/partials/paige/page.html index 31514389..f162fdd3 100644 --- a/layouts/partials/paige/page.html +++ b/layouts/partials/paige/page.html @@ -5,6 +5,7 @@ {{ $draft := $page.Draft }} {{ $expired := and $page.ExpiryDate (lt $page.ExpiryDate now) }} {{ $future := and $page.PublishDate (gt $page.PublishDate now) }} +{{ $microdata := $page.Params.paige.pages.microdata }} {{ $modified := and $page.PublishDate $page.Lastmod (lt $page.PublishDate $page.Lastmod) }} {{ if $draft }} @@ -48,7 +49,7 @@ {{ partial "paige/page-header.html" $page }} {{ with $content }} -
{{ . | safeHTML }}
+
{{ . | safeHTML }}
{{ end }} {{ partial "paige/page-footer.html" $page }}