From 37a224065d3dc16e9ac73884f4d297f88d599f29 Mon Sep 17 00:00:00 2001 From: Adam Carpenter <53hornet@gmail.com> Date: Sat, 4 May 2019 11:28:24 -0400 Subject: Posts on journal page are chronological, with most recent at the top. --- _includes/post-list.liquid | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '_includes/post-list.liquid') diff --git a/_includes/post-list.liquid b/_includes/post-list.liquid index 7f6d55d..e62fd63 100644 --- a/_includes/post-list.liquid +++ b/_includes/post-list.liquid @@ -1,5 +1,6 @@
- {% for post in collections.posts.pages %} + {% assign posts = collections.posts.pages | reverse %} + {% for post in posts %}
-- cgit v1.2.3