From 61b29fdaa8ddc395e75df5656f88875de9b1b5d1 Mon Sep 17 00:00:00 2001
From: Darius Auding <Darius.auding@gmx.de>
Date: Thu, 14 Mar 2024 22:26:17 +0100
Subject: [PATCH] Remove reduntant `class=""`

---
 templates/blog/post.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/templates/blog/post.html b/templates/blog/post.html
index 835f55e1..158ae6ff 100644
--- a/templates/blog/post.html
+++ b/templates/blog/post.html
@@ -14,7 +14,7 @@
           <figure>
             {% set image = resize_image(path="@/" ~ post.colocated_path ~ "/" ~ post.extra.depiction.image, width=800, height=600) -%}
             <div class="image is-4by3">
-              <img class="" src="{{ image.url }}" alt="{{ post.extra.depiction.alt }}" />
+              <img src="{{ image.url }}" alt="{{ post.extra.depiction.alt }}" />
             </div>
             {% if post.extra.depiction.credits %}
               <figcaption>{{ post.extra.depiction.credits }}</figcaption>
-- 
GitLab