From 7608359c2493edf602beea1e4c195bf00a6cd470 Mon Sep 17 00:00:00 2001 From: davegson <3080765+davegson@users.noreply.github.com> Date: Fri, 2 Apr 2021 16:08:27 +0200 Subject: [PATCH] Fix progress update links on next/backlog pages --- backlog/index.html | 2 +- next/index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/backlog/index.html b/backlog/index.html index 525892d..b19657d 100644 --- a/backlog/index.html +++ b/backlog/index.html @@ -68,7 +68,7 @@ layout: page

- {% assign progress_posts = site.posts | where: "progress_update", "true" %} + {% assign progress_posts = site.publications | reverse | where: "progress_update", "true" %} {% for post in progress_posts limit: 1 %} {% include thumbnail_blog.html pre_header="BLOG" %} {% endfor %} diff --git a/next/index.html b/next/index.html index eba5870..d8c728b 100644 --- a/next/index.html +++ b/next/index.html @@ -19,7 +19,7 @@ layout: page
Latest - {% assign progress_posts = site.posts | where: "progress_update", "true" %} + {% assign progress_posts = site.publications | reverse | where: "progress_update", "true" %} {% for post in progress_posts limit: 1 %} {% include thumbnail_blog.html pre_header="BLOG" %} {% endfor %}