latest 16 messages by anth0ny_
+
[2013-12-19T06:46:39Z]
anth0ny_
thanks for holding my hand
+
[2013-12-19T06:46:11Z]
anth0ny_
so cool
+
[2013-12-19T06:46:09Z]
anth0ny_
getting down with this {% capture %}
+
[2013-12-19T06:45:55Z]
anth0ny_
yeah, that will work
+
[2013-12-19T06:45:51Z]
anth0ny_
aha! I'm learning!
+
[2013-12-19T06:43:31Z]
anth0ny_
2013-12-18 23:39:18 -0700
+
[2013-12-19T06:42:59Z]
anth0ny_
yeah, that's overkill, but lines 4-6 get the point across
+
[2013-12-19T06:41:47Z]
anth0ny_
looks like this is about what i'll have to do: https://gist.github.com/skipjac/1402610
+
[2013-12-19T06:41:38Z]
anth0ny_
the issue with 'plus' is that it doesn't work with dates
+
[2013-12-19T06:41:33Z]
anth0ny_
how would you go about that bubble?
+
[2013-12-19T06:38:16Z]
anth0ny_
i really just want to be able to do {{ event.data | add 1}}
+
[2013-12-19T06:36:43Z]
anth0ny_
it's the addition part that I don't quite understand
+
[2013-12-19T06:36:35Z]
anth0ny_
and then do the addition to that other format?
+
[2013-12-19T06:35:25Z]
anth0ny_
jaybe: interesting, although I'm not fully understanding how that works. any examples?
+
[2013-12-19T06:31:11Z]
anth0ny_
obviously, that won't work, but you get the ideat
+
[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 %} ?