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

60 lines
1.9 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
- title: 'Episode #175 - Automated Testing'
2019-03-04 00:05:04 +00:00
description: I joined the Talking Drupal team to discuss automated testing.
type: Podcast
url: http://talkingdrupal.com/175
events:
- event: talking_drupal
2019-02-13 01:10:14 +00:00
date: 2018-09-05
2017-10-27 19:21:16 +00:00
---
{% block content %}
2019-01-18 23:18:08 +00:00
<div class="spaced-y-10">
<div>
2019-01-28 22:05:12 +00:00
<h2 class="font-extrabold mb-4">Upcoming Talks</h2>
2019-02-13 07:01:49 +00:00
<div class="spaced-y-10">
2019-01-18 23:18:08 +00:00
{% for talk in getUpcomingTalks(page.talks|merge(data.talks)) %}
2019-02-13 07:01:40 +00:00
{% include 'talks/talk' %}
2019-01-18 23:18:08 +00:00
{% else %}
2019-03-04 00:10:23 +00:00
<p>Nothing scheduled at the moment.</p>
2019-01-18 23:18:08 +00:00
{% endfor %}
</div>
</div>
2018-05-09 22:24:08 +00:00
2019-01-18 23:18:08 +00:00
<div>
2019-01-28 22:05:12 +00:00
<h2 class="font-extrabold mb-4">Previous Talks</h2>
2018-05-09 22:24:08 +00:00
2019-02-13 07:01:49 +00:00
<div class="spaced-y-10">
2019-01-18 23:18:08 +00:00
{% for talk in getPastTalks(page.talks|merge(data.talks))|reverse %}
2019-02-13 07:01:40 +00:00
{% include 'talks/talk' %}
2019-01-18 23:18:08 +00:00
{% endfor %}
</div>
</div>
2018-05-28 23:33:00 +00:00
</div>
2017-10-27 19:21:16 +00:00
{% endblock %}