From d14009c88e2a63bf3ad2bf5f890fd5c79e76fbcd Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 15 Jul 2015 11:47:30 +0100 Subject: [PATCH] Show upcoming talks in the opposite order --- source/talks.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/talks.html b/source/talks.html index 7aa883f3..b4063ac8 100644 --- a/source/talks.html +++ b/source/talks.html @@ -17,7 +17,7 @@ use: {% set talks = data.talks %} {% set found = false %} -{% for talk in talks if talk.date >= now %} +{% for talk in talks|reverse if talk.date >= now %} {% if loop.first %} {% set found = true %}

Upcoming Talks