From c28cff6ba00271d45296330a5f6d1d4f1a832dc1 Mon Sep 17 00:00:00 2001
From: alexisben <alex@noesya.coop>
Date: Tue, 12 Mar 2024 08:38:03 +0100
Subject: [PATCH] fix schema type

---
 layouts/events/single.html             | 3 +--
 layouts/partials/projects/project.html | 6 +++---
 layouts/posts/single.html              | 1 -
 layouts/projects/single.html           | 5 ++---
 4 files changed, 6 insertions(+), 9 deletions(-)

diff --git a/layouts/events/single.html b/layouts/events/single.html
index f1c4debe..ce11f636 100644
--- a/layouts/events/single.html
+++ b/layouts/events/single.html
@@ -4,8 +4,7 @@
   <div class="document-content" itemscope itemtype="https://schema.org/Event">
     <meta itemprop="name" content="{{ partial "PrepareHTML" .Title }}">
     <meta itemprop="url" content="{{ .Permalink }}">
-    {{ with .Params.summary }}<meta itemprop="abstract" content="{{ . | safeHTML }}">{{ end }}
-    {{ with .Summary }}<meta itemprop="description" content="{{ . | safeHTML }}">{{ end }}
+    {{ with .Params.summary }}<meta itemprop="description" content="{{ . | safeHTML }}">{{ end }}
 
     {{ partial "events/sidebar.html" . }}
 
diff --git a/layouts/partials/projects/project.html b/layouts/partials/projects/project.html
index 358db010..b52abb9c 100644
--- a/layouts/partials/projects/project.html
+++ b/layouts/partials/projects/project.html
@@ -7,18 +7,18 @@
 
 {{ with $project }}
 
-<article class="project" itemscope itemtype="https://schema.org/Project">
+<article class="project" itemscope itemtype="https://schema.org/CreativeWork"">
 
   <div class="project-content">
     {{- $title := partial "PrepareHTML" .Title -}}
 
     {{ $heading_tag.open }}
-      <a href="{{ .Permalink }}" title="{{ safeHTML (i18n "commons.more_aria" (dict "Title" $title)) }}">{{ $title }}</a>
+      <a href="{{ .Permalink }}" itemprop="url" title="{{ safeHTML (i18n "commons.more_aria" (dict "Title" $title)) }}">{{ $title }}</a>
     {{ $heading_tag.close }}
 
     {{ if site.Params.projects.index.show_description }}
       {{- if partial "GetTextFromHTML" .Params.summary -}}
-        <p itemprop="articleBody">{{ partial "GetTruncateContent" ( dict 
+        <p itemprop="abstract">{{ partial "GetTruncateContent" ( dict 
           "text" .Params.summary
           "length" site.Params.projects.index.truncate_description
           ) }}</p>
diff --git a/layouts/posts/single.html b/layouts/posts/single.html
index 5523950f..d37649df 100644
--- a/layouts/posts/single.html
+++ b/layouts/posts/single.html
@@ -6,7 +6,6 @@
     <meta itemprop="url" content="{{ .Permalink }}">
     {{ with .Date }}<meta itemprop="datePublished" content="{{ .Format "2006-01-02T15:04" }}">{{ end }}
     {{ with .Params.summary }}<meta itemprop="abstract" content="{{ . | safeHTML }}">{{ end }}
-    {{ with .Summary }}<meta itemprop="description" content="{{ . | safeHTML }}">{{ end }}
 
     {{ partial "posts/sidebar.html" . }}
 
diff --git a/layouts/projects/single.html b/layouts/projects/single.html
index 0eb47c06..05484c8b 100644
--- a/layouts/projects/single.html
+++ b/layouts/projects/single.html
@@ -1,11 +1,10 @@
 {{ define "main" }}
   {{ partial "projects/hero-single.html" . }}
 
-  <div class="document-content" itemscope itemtype="https://schema.org/Event">
+  <div class="document-content" itemscope itemtype="https://schema.org/CreativeWork">
     <meta itemprop="name" content="{{ partial "PrepareHTML" .Title }}">
     <meta itemprop="url" content="{{ .Permalink }}">
-    {{ with .Params.summary }}<meta itemprop="abstract" content="{{ . | safeHTML }}">{{ end }}
-    {{ with .Summary }}<meta itemprop="description" content="{{ . | safeHTML }}">{{ end }}
+    {{ with .Params.summary }}<meta itemprop="description" content="{{ . | safeHTML }}">{{ end }}
 
     {{ partial "projects/summary.html" (dict
         "context" .
-- 
GitLab