2024-09-02 18:00:00 +01:00
---
2025-01-20 15:24:13 +00:00
layout: page
2024-09-02 18:00:00 +01:00
title: Presentations
use: [presentations]
---
2025-05-04 17:48:56 +01:00
<p>Since September 2012, I have given {{ get_presentation_count ( data .presentations ) }} public talks and workshops at various conferences and meetups, in-person and remotely, on topics including PHP, Drupal, automated testing, Git, CSS, and systems administration.</p>
2024-09-02 18:00:00 +01:00
2024-11-30 21:04:23 +00:00
{% for presentation in data .presentations | sort ( ( a , b ) = > a .events | last .date | date ( 'U' ) > b .events | last .date | date ( 'U' ) ? - 1 : 1 ) %}
2024-09-02 18:00:00 +01:00
<article>
<div class="not-prose">
<h2 class="text-xl font-bold">
2024-11-30 21:04:23 +00:00
<a class="font-bold text-blue-primary dark:text-blue-400" href=" {{ presentation .url | trim ( '/' , 'right' ) }} "> {{ presentation .title }} </a>
2024-09-02 18:00:00 +01:00
</h2>
</div>
2025-08-17 23:38:03 +01:00
{% if presentation .blocks .description %}
{{ presentation .blocks .description | raw }}
{% else %}
<p> {{ presentation .description }} </p>
{% endif %}
2024-09-02 18:00:00 +01:00
</article>
{% endfor %}