From 05a8a43e7b1894526f7c93eb8db655b7c56925d1 Mon Sep 17 00:00:00 2001
From: alexisben <alex@noesya.coop>
Date: Tue, 20 Dec 2022 16:21:01 +0100
Subject: [PATCH] fix picture size

---
 layouts/partials/blocks/templates/chapter.html | 6 +++---
 layouts/partials/posts/image.html              | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/layouts/partials/blocks/templates/chapter.html b/layouts/partials/blocks/templates/chapter.html
index 991d7028..61014c58 100644
--- a/layouts/partials/blocks/templates/chapter.html
+++ b/layouts/partials/blocks/templates/chapter.html
@@ -35,9 +35,9 @@
             {{ partial "commons/image.html"
               (dict
                 "image"    .
-                "mobile"   "351x351"
-                "tablet"   "336x336"
-                "desktop"  "636x636"
+                "mobile"   "350x350"
+                "tablet"   "450x450"
+                "desktop"  "1280x1280"
               )}}
             {{ if partial "GetTextFromHTML" .credit }}
               <figcaption>{{ partial "PrepareHTML" .credit }}</figcaption>
diff --git a/layouts/partials/posts/image.html b/layouts/partials/posts/image.html
index 40868e72..eb398d08 100644
--- a/layouts/partials/posts/image.html
+++ b/layouts/partials/posts/image.html
@@ -3,9 +3,9 @@
   {{ partial "commons/image.html"
         (dict
           "image"    .
-          "mobile"   "351x168"
-          "tablet"   "456x219"
-          "desktop"  "856x410"
+          "mobile"   "350x350"
+          "tablet"   "450x450"
+          "desktop"  "900x900"
           "itemprop" true
         )}}
     {{- if isset . "credit" -}}
-- 
GitLab