oliverdavies.uk/source/_pages/talks.html.twig

26 lines
865 B
Twig
Raw Normal View History

2021-06-30 07:00:00 +00:00
---
2021-06-30 07:00:00 +00:00
title: Talks and workshops
2022-01-12 21:45:37 +00:00
use: [talks]
2021-06-30 07:00:00 +00:00
---
2022-01-12 21:45:37 +00:00
<p>Starting with my first talk in September 2012, I have given
{{ get_past_talk_count(data.talks) }} presentations and workshops at various
conferences and meetups, in-person and remotely, on topics including PHP,
Drupal, automated testing, Git, CSS, and systems administration.</p>
2021-08-25 00:11:57 +00:00
2021-06-30 07:00:00 +00:00
<div class="mt-10">
<div class="space-y-8">
2022-07-01 20:58:28 +00:00
{% for talk in data.talks|sort((a, b) => get_last_event_date_for_talk(a) <=> get_last_event_date_for_talk(b)) %}
<article>
2021-06-30 07:00:00 +00:00
<h2>
<a class="dark:text-blue-400 text-blue-primary" href="{{ talk.url|trim('/', 'right') }}">
{{ talk.title }}
</a>
</h2>
2021-06-30 07:00:00 +00:00
<p class="mt-1">{{ talk.description }}</p>
</article>
{% endfor %}
</div>
</div>