--- title: Talks and Workshops use: - talks --- {% set talkCount = 0 %} {% for talk in data.talks %} {% for event in talk.events if 'today'|date('U') >= event.date|date('U') %} {% set talkCount = talkCount + 1 %} {% endfor %} {% endfor %} Since September 2012, I have given {{ talkCount }} public presentations and workshops at various conferences and meetups, in-person and remotely, on topics including PHP, Drupal, automated testing, Git, CSS, and systems administration. {% for talk in data.talks|sort((a, b) => a.events|first.date|date('U') > b.events|first.date|date('U') ? -1 : 1) %}

{{ talk.title }}

{{ talk.description }}

{% endfor %}