diff --git a/en/blog/posts.md b/en/blog/posts.md index 1ed086c85..77c95a55c 100644 --- a/en/blog/posts.md +++ b/en/blog/posts.md @@ -12,7 +12,7 @@ redirect_from: "/blog/posts.html" {% if site.posts.size != 0 %}
{% for post in site.posts %} -
+
{% for tag in post.tags %} @@ -24,8 +24,14 @@ redirect_from: "/blog/posts.html"
By {{ post.author }}
-
{{ post.date | date:"%b %d, %Y" }}
+
{{ post.date | date:"%b %d, %Y" }}
+
+ {% assign content_without_title = post.excerpt | remove: post.title %} + {% assign content_without_title_and_slug = content_without_title | remove: post.slug_line %} + {% assign content_without_html = content_without_title_and_slug | strip_html %} + {{ content_without_html | truncatewords: 20}} +