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

24 lines
799 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
2021-06-30 07:00:00 +00:00
use:
- talks
---
2021-06-30 07:00:00 +00:00
<p class="mt-4">After giving my first talk in September 2012, I have now given 81 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-06-30 07:00:00 +00:00
<div class="mt-6">
<div class="space-y-6">
{% for talk in data.talks|sort((a,b) => a.sortable_date < b.sortable_date) %}
<article>
2021-06-30 07:00:00 +00:00
<h2>
2021-06-30 07:00:00 +00:00
<a class="text-blue-700 dark:text-blue-400" href="{{ talk.url }}">
{{ talk.title }}
</a>
</h2>
2021-06-30 07:00:00 +00:00
<p class="mt-1 leading-6">{{ talk.description }}</p>
</article>
{% endfor %}
</div>
</div>