2016-01-28 21:47:30 +00:00
---
layout: default
title: Talks
meta:
description: 'Information about previous and upcoming talks that Oliver has presented at conferences and user groups'
use:
- talks
---
<h1>Talks</h1>
2016-06-14 01:24:59 +00:00
<p>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 <a href="/contact/">get in touch</a>.</p>
2016-01-28 21:47:30 +00:00
<p>There is also information about events that I’ ve attended and spoken at on my <a href=" {{ site .lanyrd .url }} ">Lanyrd</a> and <a href=" {{ site .joindin .url }} ">Joind.in</a> profiles.</p>
{% set found = false %}
{% set year = 0 %}
2016-03-05 20:26:36 +00:00
{% set now = 'now' | date ( 'U' ) %}
2016-06-14 01:24:59 +00:00
2016-01-29 10:35:53 +00:00
{% for talk in data .talks | reverse if talk .date >= now %}
2016-01-28 21:47:30 +00:00
{% if loop .first %}
{% set found = true %}
2016-06-14 01:24:59 +00:00
2016-01-28 21:47:30 +00:00
<h2>Upcoming Talks</h2>
{% endif %}
2016-01-29 10:35:53 +00:00
2016-01-28 21:47:30 +00:00
{% if talk .date | date ( 'Y' ) != year %}
{% set year = talk .date | date ( 'Y' ) %}
2016-06-14 01:24:59 +00:00
2016-01-28 21:47:30 +00:00
</ul>
<h3> {{ year }} </h3>
<ul>
{% endif %}
2016-09-01 00:04:50 +00:00
{{ include ( 'talks/listing-item' ) }}
2016-01-28 21:47:30 +00:00
{% endfor %}
2016-06-14 01:24:59 +00:00
2016-01-28 21:47:30 +00:00
{% if found %}
</ul>
{% endif %}
{% set found = false %}
{% set year = 0 %}
2016-06-14 01:24:59 +00:00
2016-01-28 21:47:30 +00:00
{% for talk in data .talks if talk .date < now %}
{% if loop .first %}
{% set found = true %}
2016-06-14 01:24:59 +00:00
2016-01-28 21:47:30 +00:00
<h2>Previous Talks</h2>
{% endif %}
{% if talk .date | date ( 'Y' ) != year %}
{% set year = talk .date | date ( 'Y' ) %}
2016-06-14 01:24:59 +00:00
2016-01-28 21:47:30 +00:00
</ul>
<h3> {{ year }} </h3>
<ul>
{% endif %}
2016-09-01 00:04:50 +00:00
{{ include ( 'talks/listing-item' ) }}
2016-01-28 21:47:30 +00:00
{% endfor %}
2016-06-14 01:24:59 +00:00
2016-01-28 21:47:30 +00:00
{% if found %}
</ul>
{% endif %}