From 73dd41e059497af9722bf9082dfc7f6b50277b49 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Sat, 1 Aug 2020 07:28:25 -0300 Subject: Don't reverse the order of posts in the posting list in index.html I though that the reverse that was required, but it had the oposite effect. --- _layouts/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_layouts/index.html b/_layouts/index.html index 0ec683d..037e0e3 100644 --- a/_layouts/index.html +++ b/_layouts/index.html @@ -2,7 +2,7 @@ layout: default ---

{{ site.t.recent_posts[page.lang] }}

-{% assign lposts=site.posts | where:"lang", page.lang | sort: 'date' | reverse %} +{% assign lposts=site.posts | where:"lang", page.lang | sort: 'date' %} {% if lposts.size > 0 %}