From d281a0ba8fdced528cd1fd65051d21900f01061d Mon Sep 17 00:00:00 2001 From: Michael Rose Date: Mon, 9 Dec 2013 09:00:39 -0500 Subject: [PATCH] Remove category limit on post index --- _layouts/home.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_layouts/home.html b/_layouts/home.html index 39e5681..794b1fa 100644 --- a/_layouts/home.html +++ b/_layouts/home.html @@ -23,8 +23,8 @@
-

Articles

- {% for post in site.categories.articles limit:5 %} +

Articles

+ {% for post in site.posts limit:5 %}

{{ post.title }}

{% if post.description %}{{ post.description }}{% else %}{{ post.content | strip_html | strip_newlines | truncate: 120 }}{% endif %}

-- 2.45.2