{{ this.title }}
+-
{% for post in site.query('/blog/entries') %}
{% set post_loop = loop %}
{% if post_loop.index <= 3 %}
{{ render_post_summary(post) }}
{% endif %}
{% endfor %}
-
diff --git a/themes/vocabulary_theme/templates/blocks/recent-posts.html b/themes/vocabulary_theme/templates/blocks/recent-posts.html
index dc9c0fa54..861a34db9 100644
--- a/themes/vocabulary_theme/templates/blocks/recent-posts.html
+++ b/themes/vocabulary_theme/templates/blocks/recent-posts.html
@@ -1,22 +1,14 @@
{% from "macros/posts.html" import render_post_summary %}
-
- {{ this.title }}
-
-
- See all posts
-
- {{ this.title }}
+
{% for post in site.query('/blog/entries') %}
{% set post_loop = loop %}
{% if post_loop.index <= 3 %}
{{ render_post_summary(post) }}
{% endif %}
{% endfor %}
-