This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/source/talks.html.twig

44 lines
1.5 KiB
Twig
Raw Normal View History

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:
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]
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 Drupals LDAP module.
events:
- event: swdug
2019-02-13 01:10:14 +00:00
date: 2013-07-10
2019-01-28 22:04:33 +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 Ive been doing since I joined the Association staff.
events:
- event: swdug
2019-02-13 01:10:14 +00:00
date: 2014-08-19
- title: 'Automated testing with Drupal 8 and PHPUnit'
2019-03-04 00:05:04 +00:00
description: A workshop that I gave to teach others about automated testing in Drupal 8.
type: Workshop
events:
- event: drupal_bristol
2019-02-13 01:10:14 +00:00
date: 2018-06-27
2017-10-27 19:21:16 +00:00
---
{% block content %}
2019-05-20 02:06:19 +00:00
{% set talks = getTalks(page.talks|merge(data.talks)) %}
<header class="mb-6">
<p class="text-lg">After giving my first talk in September 2012, I have now given {{ talks|pastEvents|length }} presentations at various conferences and meetups, on topics including PHP, Drupal, Git, CSS and systems administration.</p>
2019-05-20 02:06:19 +00:00
</header>
2019-01-18 23:18:08 +00:00
<div class="spaced-y-10">
2019-05-20 01:38:31 +00:00
{% include 'talks/upcoming' with {
2019-05-20 11:54:38 +00:00
talks: talks|upcomingTalks,
2019-05-20 01:38:31 +00:00
} %}
2019-05-20 01:38:31 +00:00
{% include 'talks/past' with {
2019-05-20 11:54:38 +00:00
talks: talks|pastTalks,
2019-05-20 01:38:31 +00:00
} %}
2018-05-28 23:33:00 +00:00
</div>
2017-10-27 19:21:16 +00:00
{% endblock %}