From 699d96c9f6f433079b5654523f1bac7306f3ea9f Mon Sep 17 00:00:00 2001
From: Dominik George <dominik.george@teckids.org>
Date: Tue, 1 Oct 2024 23:03:25 +0200
Subject: [PATCH] Fix styling of blog card

---
 templates/blog/card.html | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/templates/blog/card.html b/templates/blog/card.html
index 215b9c41..8f4b4581 100644
--- a/templates/blog/card.html
+++ b/templates/blog/card.html
@@ -1,9 +1,4 @@
           <div class="card is-flex is-flex-direction-column is-fullheight is-justify-content-space-between" typeof="schema:BlogPosting" resource="{{ post.permalink }}" property="schema:blogPost">
-            {% if post.extra.microdata.about %}
-            {% for about in post.extra.microdata.about %}
-              <meta property="schema:about" href="{{ about }}" />
-            {% endfor %}
-            {% endif %}
             <div class="card-image">
               <a href="{{ post.permalink }}">
                 <figure class="image is-4by3">
@@ -29,5 +24,10 @@
                 </div>
               </div>
             </div>
+            {% if post.extra.microdata.about %}
+            {% for about in post.extra.microdata.about %}
+              <meta property="schema:about" href="{{ about }}" />
+            {% endfor %}
+            {% endif %}
           </div>
 
-- 
GitLab