diff --git a/source/_partials/talks-table.html.twig b/source/_partials/talks-table.html.twig new file mode 100644 index 00000000..e9ecabc7 --- /dev/null +++ b/source/_partials/talks-table.html.twig @@ -0,0 +1,26 @@ +
Date | +Talk | +Event | +
---|---|---|
+ {{ talk.date|date(site.default_date_format) }} + | + ++ + {{ talk.title }} + + | + +{{ talk.event.name }} | +
There is also information about events that I’ve attended and spoken at on my Lanyrd and Joind.in profiles.
-{% set found = false %} -{% set year = 0 %} {% set now = 'now'|date('U') %} -{% for talk in data.talks|reverse if talk.date >= now %} - {% if loop.first %} - {% set found = true %} +{% include "talks-table" with { talks: data.talks } %} -