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
2019-07-11 00:43:17 +01:00

47 lines
1.5 KiB
Twig
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
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'
description: A review and demonstration of some of the recent single sign-on work that I did using Drupals LDAP module.
events:
- event: swdug
date: 2013-07-10
- title: 'About the Drupal Association'
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
date: 2014-08-19
- title: 'Automated testing with Drupal 8 and PHPUnit'
description: A workshop that I gave to teach others about automated testing in Drupal 8.
type: Workshop
events:
- event: drupal_bristol
date: 2018-06-27
---
{% block content %}
{% set talks = getTalks(page.talks|merge(data.talks)) %}
<header>
<p class="lead">
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>
</header>
<div class="spaced-y-10 mt-6">
{% include 'talks/upcoming' with {
talks: talks|upcomingTalks,
} %}
{% include 'talks/past' with {
talks: talks|pastTalks,
} %}
</div>
{% endblock %}