diff --git a/templates/blog/card.html b/templates/blog/card.html
index 215b9c410d35fdec0e2a704f1ab2f130bb6e0bc4..8f4b45812a0ae165feab2fc6c7a0d393d3c5db06 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>