+[2013-12-19T06:31:02Z]anth0ny_I'm listing a bunch of events (each event is a post). I want two sections on one page: upcoming events and past events. I've found that I can do {% if event.date > site.time %} when iterating through events, but that puts any event that occurs today in the "past events" section since all the event times are set to 00:00:00. Is there a way to do something like {% if event.date + 1_DAY > site.time %} ? +[2013-12-19T06:31:11Z]anth0ny_obviously, that won't work, but you get the ideat +[2013-12-19T06:34:19Z]jaybehi anth0ny_. you could assign just the date portion to a variable and test upon that. e.g. {% capture mydate %} {{ event.date | FILTER_HERE }} {% endcapture %} ... +[2013-12-19T06:35:25Z]anth0ny_jaybe: interesting, although I'm not fully understanding how that works. any examples? +[2013-12-19T06:36:11Z]jaybeanth0ny_, well, the general idea could be accomplished in different ways... for example, there is a `date` filter whereby you could convert the date to another 'format'