oliverdavies.uk/source/talks.html.twig
2019-01-07 17:50:11 +00:00

63 lines
1.7 KiB
Twig

---
layout: default
title: Talks
meta:
description: 'Information about previous and upcoming talks that Oliver has presented at conferences and user groups'
use: [talks]
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'
- title: Things you should know about PHP
type: Talk
events:
- event: ssdc
date: '2019-01-28'
---
{% block content %}
<div class="markup mb-8">
<p>I regularly speak at conferences and user groups about a range of subjects including PHP, Drupal, automated testing, Git and systems administration.</p>
</div>
<div class="mb-8">
<h2 class="mb-2">Upcoming Talks</h2>
{% set upcoming_talks = getUpcomingTalks(data.talks|merge(page.talks), site.events) %}
{% if not upcoming_talks.empty %}
{% include "talks/table" with {
talks: upcoming_talks,
upcoming: true,
} %}
{% else %}
<p>Nothing scheduled at the moment.</p>
{% endif %}
</div>
<div>
<h2 class="mb-2">Previous Talks</h2>
{% include "talks/table" with {
talks: getPastTalks(data.talks|merge(page.talks), site.events)
} %}
</div>
{% endblock %}