diff --git a/templates/blog/meta_line.html b/templates/blog/meta_line.html
index 0da20b03609e801f416f9aab4a364dd380e1ff4d..09b900d5393d5b12d0abda8791a8f3436e7da6fe 100644
--- a/templates/blog/meta_line.html
+++ b/templates/blog/meta_line.html
@@ -1,4 +1,5 @@
 <p class="subtitle is-7 py-2">
   <span title="Veröffentlicht am"><i class="fa-solid fa-calendar-days"></i> <time datetime="{{ post.date }}" property="schema:datePublished">{{ post.date }}</time></span> ·
+  <span title="Anzahl Wörter"><i class="fa-solid fa-ruler"></i> <span property="schema:wordCount">{{ post.word_count }} Wörter</span></span> ·
   <span title="Lesezeit"><i class="fa-solid fa-hourglass-start"></i> {{ post.reading_time }} min</span>
 </p>
diff --git a/templates/blog/post.html b/templates/blog/post.html
index 807eaf6b32a60033ce5914c51b4c11fb3cbe3fd7..e0bc6dc11a7e42e707898d326262282ab775402f 100644
--- a/templates/blog/post.html
+++ b/templates/blog/post.html
@@ -22,7 +22,7 @@
         <div class="card-image">
           <figure class="image is-4by3">
             {% set image = resize_image(path="@/" ~ post.colocated_path ~ "/" ~ post.extra.depiction.image, width=800, height=600) -%}
-              <img src="{{ image.url }}" alt="{{ post.extra.depiction.alt }}" />
+              <img src="{{ image.url }}" alt="{{ post.extra.depiction.alt }}" property="schema:thumbnailUrl" />
             {% if post.extra.depiction.credits %}
               <figcaption class="p-1 has-text-white has-background-black is-size-7 is-italic">{{ post.extra.depiction.credits }}</figcaption>
             {% endif %}