2017-10-27 19:21:16 +00:00
|
|
|
|
---
|
|
|
|
|
title: Talks
|
|
|
|
|
meta:
|
2019-11-12 22:50:10 +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'
|
2019-03-04 00:05:04 +00:00
|
|
|
|
description: A review and demonstration of some of the recent single sign-on work that I did using Drupal’s LDAP module.
|
2019-01-02 22:18:55 +00:00
|
|
|
|
events:
|
|
|
|
|
- event: swdug
|
2019-02-13 01:10:14 +00:00
|
|
|
|
date: 2013-07-10
|
2019-01-28 22:04:33 +00:00
|
|
|
|
|
2019-01-02 22:18:55 +00:00
|
|
|
|
- title: 'About the Drupal Association'
|
2019-03-04 00:05:04 +00:00
|
|
|
|
description: An impromptu talk about what the Drupal Association is, and what work I’ve been doing since I joined the Association staff.
|
2019-01-02 22:18:55 +00:00
|
|
|
|
events:
|
|
|
|
|
- event: swdug
|
2019-02-13 01:10:14 +00:00
|
|
|
|
date: 2014-08-19
|
2019-01-02 22:18:55 +00:00
|
|
|
|
|
2020-03-14 21:12:42 +00:00
|
|
|
|
- title: 'Automated testing and Test Driven Development in Drupal 8'
|
|
|
|
|
description: A workshop that I gave about automated testing and test driven development in Drupal 8.
|
2019-01-02 22:18:55 +00:00
|
|
|
|
type: Workshop
|
|
|
|
|
events:
|
|
|
|
|
- event: drupal_bristol
|
2019-02-13 01:10:14 +00:00
|
|
|
|
date: 2018-06-27
|
2020-03-14 21:12:42 +00:00
|
|
|
|
- event: drupalcamp_london_20
|
|
|
|
|
date: 2020-03-13
|
2017-10-27 19:21:16 +00:00
|
|
|
|
---
|
|
|
|
|
{% block content %}
|
2019-12-27 13:56:51 +00:00
|
|
|
|
{% set talks = page.talks|merge(data.talks) %}
|
2019-05-20 02:06:19 +00:00
|
|
|
|
|
2019-07-10 23:43:17 +00:00
|
|
|
|
<header>
|
2019-07-10 23:43:10 +00:00
|
|
|
|
<p class="lead">
|
2019-12-27 13:56:51 +00:00
|
|
|
|
After giving my first talk in September 2012, I have now given {{ get_past_talk_count(talks) }} presentations at various conferences and meetups,
|
2019-07-10 23:43:10 +00:00
|
|
|
|
on topics including PHP, Drupal, Git, CSS and systems administration.
|
|
|
|
|
</p>
|
2019-05-20 02:06:19 +00:00
|
|
|
|
</header>
|
|
|
|
|
|
2019-07-10 23:43:17 +00:00
|
|
|
|
<div class="spaced-y-10 mt-6">
|
2019-05-20 01:38:31 +00:00
|
|
|
|
{% include 'talks/upcoming' with {
|
2019-12-27 13:56:51 +00:00
|
|
|
|
talks: get_upcoming_talks(talks),
|
|
|
|
|
} only %}
|
2017-10-28 11:17:25 +00:00
|
|
|
|
|
2019-05-20 01:38:31 +00:00
|
|
|
|
{% include 'talks/past' with {
|
2019-12-27 13:56:51 +00:00
|
|
|
|
talks: get_past_talks(talks),
|
|
|
|
|
} only %}
|
2018-05-28 23:33:00 +00:00
|
|
|
|
</div>
|
2017-10-27 19:21:16 +00:00
|
|
|
|
{% endblock %}
|