diff --git a/_includes/thumbnail_blog.html b/_includes/thumbnail_blog.html
index f826bb1..0d2e7ca 100644
--- a/_includes/thumbnail_blog.html
+++ b/_includes/thumbnail_blog.html
@@ -23,20 +23,22 @@
   <div class="card-blog-content" style="max-width: 365px;">
       <div class="content-wrapper">
           <span class="w-full">
-            {% if include.pre_header %}
-            {{ include.pre_header }} -
+            {% if post.progress_update == true %}
+            {% assign title_length = post.title | size %}
+              {{ post.title | slice: 7, title_length }} - #{{ post.title | slice: 2, 2 }}
+            {% else %}
+              {{ post.title }}
             {% endif %}
-            {{ post.date | date: "%-d. %b %Y" }}
           </span>
           <div class="circular-profile" tooltip="{{ post.author | capitalize }}">
               <img src="{{ site.img_url }}profiles/{{ post.author | downcase }}.png" alt="{{ post.author | capitalize }}">
           </div>
       </div>
-      {% if post.progress_update == true %}
-      {% assign title_length = post.title | size %}
-        <span>{{ post.title | slice: 7, title_length }} - #{{ post.title | slice: 2, 2 }}</span>
-      {% else %}
-        <span>{{ post.title }}</span>
-      {% endif %}
+      <span>
+        {% if include.pre_header %}
+        {{ include.pre_header }} -
+        {% endif %}
+        {{ post.date | date: "%-d. %b %Y" }}
+      </span>
   </div>
 </a>
\ No newline at end of file
diff --git a/assets/img/thumbnails/blog/snowden-changed-everything.png b/assets/img/thumbnails/blog/snowden-changed-everything.png
index 190fb60..5a56c7b 100644
Binary files a/assets/img/thumbnails/blog/snowden-changed-everything.png and b/assets/img/thumbnails/blog/snowden-changed-everything.png differ