2017-10-27 19:21:16 +00:00
|
|
|
---
|
2018-10-05 23:23:35 +00:00
|
|
|
layout: default
|
2017-10-27 19:21:16 +00:00
|
|
|
title: Talks
|
|
|
|
meta:
|
2019-01-02 22:18:55 +00:00
|
|
|
description: 'Information about previous and upcoming talks that Oliver has presented at conferences and user groups'
|
2017-10-27 19:21:16 +00:00
|
|
|
use: [talks]
|
2019-01-02 22:18:55 +00:00
|
|
|
talks:
|
|
|
|
- title: 'Drupal and the LDAP module'
|
|
|
|
events:
|
|
|
|
- event: swdug
|
|
|
|
date: '2013-07-10'
|
|
|
|
- title: 'About the Drupal Association'
|
|
|
|
events:
|
|
|
|
- event: swdug
|
|
|
|
date: '2014-08-19'
|
|
|
|
|
|
|
|
- title: 'Automated testing with Drupal 8 and PHPUnit'
|
|
|
|
type: Workshop
|
|
|
|
events:
|
|
|
|
- event: drupal_bristol
|
|
|
|
date: '2018-06-27'
|
|
|
|
|
|
|
|
- title: 'Episode #175 - Automated Testing'
|
|
|
|
type: Podcast
|
|
|
|
url: http://talkingdrupal.com/175
|
|
|
|
events:
|
|
|
|
- event: talking_drupal
|
|
|
|
date: '2018-09-05'
|
2019-01-02 23:25:43 +00:00
|
|
|
|
|
|
|
- title: TBC
|
|
|
|
type: Talk
|
|
|
|
events:
|
|
|
|
- event: ssdc
|
|
|
|
date: '2019-01-28'
|
2017-10-27 19:21:16 +00:00
|
|
|
---
|
|
|
|
{% block content %}
|
2018-06-19 18:58:13 +00:00
|
|
|
<p>
|
2019-01-03 00:22:28 +00:00
|
|
|
I regularly speak at conferences and user groups about a range of subjects including PHP, Drupal, automated testing, Git and systems administration.
|
2019-01-03 01:32:59 +00:00
|
|
|
If you would like to me to speak at your group or conference, please <a href="/contact">get in touch</a>.
|
2018-06-19 18:58:13 +00:00
|
|
|
</p>
|
2017-10-27 19:21:16 +00:00
|
|
|
|
2018-06-15 11:17:45 +00:00
|
|
|
<div class="mb-6">
|
2018-05-28 23:33:00 +00:00
|
|
|
<h2>Upcoming Talks</h2>
|
2017-10-28 11:17:25 +00:00
|
|
|
|
2019-01-02 22:18:55 +00:00
|
|
|
{% set upcoming_talks = getUpcomingTalks(data.talks|merge(page.talks), site.events) %}
|
2018-05-28 23:33:00 +00:00
|
|
|
{% if not upcoming_talks.empty %}
|
2018-06-05 07:54:26 +00:00
|
|
|
{% include "talks-table" with {
|
|
|
|
talks: upcoming_talks,
|
|
|
|
upcoming: true,
|
|
|
|
} %}
|
2018-05-28 23:33:00 +00:00
|
|
|
{% else %}
|
|
|
|
<p>Nothing scheduled at the moment.</p>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
2018-05-09 22:24:08 +00:00
|
|
|
|
2018-05-28 23:33:00 +00:00
|
|
|
<div>
|
2018-12-30 00:02:06 +00:00
|
|
|
<h2>Previous Talks</h2>
|
2018-05-09 22:24:08 +00:00
|
|
|
|
2018-06-05 07:54:26 +00:00
|
|
|
{% include "talks-table" with {
|
2019-01-02 22:18:55 +00:00
|
|
|
talks: getPastTalks(data.talks|merge(page.talks), site.events)
|
2018-06-05 07:54:26 +00:00
|
|
|
} %}
|
2018-05-28 23:33:00 +00:00
|
|
|
</div>
|
2017-10-27 19:21:16 +00:00
|
|
|
{% endblock %}
|