--- layout: default nav: talks title: Talks meta: description: 'Information about previous and upcoming talks that Oliver has presented at conferences and user groups' use: [talks] ---

Talks

I regularly speak at conferences and user groups about a range of subjects including Drupal, Sculpin and Git. If you would like to me to speak at your group or conference, please get in touch.

There is also information about events that I’ve attended and spoken at on my Lanyrd and Joind.in profiles.

{% set now = 'today'|date('U') %} {% set talks = data.talks %} {% set found, year, new_year = false, '0', false %} {% for talk in talks|reverse if talk.date >= now %} {% if loop.first %}

Upcoming Talks

{% endif %} {% set this_year %}{{ talk.date|date('Y') }}{% endset %} {% if this_year != year %} {% if new_year %} {# Close the list for the previous year. #} {% endif %} {% set found, year = true, this_year %}

{{ this_year }}

{% endif %} {% set found, year, new_year = false, '0', false %} {% for talk in talks if talk.date < now %} {% if loop.first %}

Previous Talks

{% endif %} {% set this_year %}{{ talk.date|date('Y') }}{% endset %} {% if this_year != year %} {% if new_year %} {# Close the list for the previous year. #} {% endif %} {% set year, found = this_year, true %}

{{ this_year }}

{% endif %}