2015-04-10 22:21:29 +00:00
---
layout: default
title: Talks
2015-04-10 22:25:52 +00:00
nav: talks
2015-04-11 07:27:27 +00:00
meta:
description: 'Information about previous and upcoming talks that Oliver has presented at conferences and user groups'
talks:
2015-04-11 07:51:43 +00:00
- date: 2012-09-05
location: unified.diff
description: <a href="http://vimeo.com/49827006">So, what is this Drupal thing?</a> - an introduction to Drupal.
2015-04-11 22:21:48 +00:00
tags:
2015-04-12 10:26:18 +00:00
- user-group
2015-04-11 22:21:48 +00:00
- drupal
2015-04-11 07:51:43 +00:00
- date: 2013-07-10
2015-04-11 07:27:27 +00:00
location: South Wales Drupal User Group
2015-04-11 07:51:43 +00:00
description: An overview of the Drupal LDAP module and how I customised it for a client project.
2015-04-11 22:21:48 +00:00
tags:
2015-04-12 10:26:18 +00:00
- user-group
2015-04-11 22:21:48 +00:00
- drupal
- ldap
2015-04-11 07:27:27 +00:00
- date: 2014-03-01
location: DrupalCamp London
description: <a href="/blog/what-git-flow">Never Commit to Master</a>: An Introduction to Git Flow.
2015-04-11 22:21:48 +00:00
tags:
- conference
- drupalcamp
- git
- git-flow
2015-04-11 07:51:43 +00:00
- date: 2014-07-02
location: Drupal Bristol User Group
description: <a href="/blog/drush-make-drupalbristol">drush make drupalbristol</a>: An introduction to Drush and Drush Make.
2015-04-11 22:21:48 +00:00
tags:
2015-04-12 10:26:18 +00:00
- user-group
2015-04-11 22:21:48 +00:00
- drush
- drush-make
2015-04-11 07:51:43 +00:00
- date: 2014-08-09
2015-04-11 07:27:27 +00:00
location: South Wales Drupal User Group
2015-04-11 07:51:43 +00:00
description: An impromptu talk about the <a href="https://assoc.drupal.org">Drupal Association</a> and I've done there since joining the team.
2015-04-11 22:21:48 +00:00
tags:
2015-04-12 10:26:18 +00:00
- user-group
2015-04-11 22:21:48 +00:00
- drupal-association
2015-04-11 07:51:43 +00:00
- date: 2015-01-18
location: DrupalCamp Brighton
description: Drupal.org in 2015: What's coming next?
2015-04-11 22:21:48 +00:00
tags:
- conference
- drupalcamp
- drupalorg
- drupal-association
2015-04-11 07:51:43 +00:00
- date: 2015-02-28
location: DrupalCamp London
description: Drupal.org in 2015: What's coming next?
2015-04-11 22:21:48 +00:00
tags:
- conference
- drupalcamp
- drupalorg
- drupal-association
2015-04-11 08:40:54 +00:00
- date: 2015-04-08
2015-04-11 07:51:43 +00:00
location: PHPSW
description: <a href="https://speakerdeck.com/opdavies/drupal-8">Drupal 8</a> (lightning talk)
2015-04-11 22:21:48 +00:00
tags:
2015-04-12 19:18:13 +00:00
- user-group
2015-04-11 22:21:48 +00:00
- drupal
- drupal-8
2015-04-18 06:23:17 +00:00
- phpsw
2015-04-11 07:27:27 +00:00
---
<h1>Talks</h1>
2015-04-18 00:30:43 +00:00
<p>I regularly speak at conferences and user groups about a range of subjects relating to Drupal, PHP and web development. If you would like to me to speak at your group or conference, please <a href="/contact">get in touch</a>.</p>
2015-04-11 07:51:43 +00:00
{% set now = 'now' | date ( 'U' ) %}
2015-04-13 21:30:38 +00:00
{% set talks = page .talks | reverse %}
2015-04-11 07:51:43 +00:00
2015-04-11 08:44:55 +00:00
{% set found = false %}
2015-04-13 21:30:38 +00:00
{% for talk in talks if talk .date >= now %}
2015-04-11 08:44:55 +00:00
{% if loop .first %}
2015-04-11 18:49:47 +00:00
{% set found = true %}
2015-04-11 08:44:55 +00:00
<h2>Upcoming Talks</h2>
<dl>
{% endif %}
2015-04-11 07:27:27 +00:00
2015-04-11 08:44:55 +00:00
{% include 'talk-listing-item' %}
{% endfor %}
{% if found %}
</dl>
{% endif %}
{% set found = false %}
2015-04-13 21:30:38 +00:00
{% for talk in talks if talk .date < now %}
2015-04-11 08:44:55 +00:00
{% if loop .first %}
2015-04-11 10:58:23 +00:00
{% set found = true %}
2015-04-11 08:44:55 +00:00
<h2>Previous Talks</h2>
<dl>
{% endif %}
{% include 'talk-listing-item' %}
{% endfor %}
{% if found %}
</dl>
2015-04-25 13:44:39 +00:00
{% endif %}