oliverdavies.uk/source/_pages/talks.md

26 lines
913 B
Markdown
Raw Normal View History

2024-01-03 20:00:00 +00:00
---
title: Talks and Workshops
2024-02-07 20:01:19 +00:00
use: [talks]
2024-01-03 20:00:00 +00:00
---
2024-01-03 20:00:00 +00:00
{% set talkCount = 0 %}
{% for talk in data.talks %}
{% for event in talk.events if 'today'|date('U') >= event.date|date('U') %}
{% set talkCount = talkCount + 1 %}
{% endfor %}
{% endfor %}
Since September 2012, I have given {{ get_past_talk_count(data.talks) }} public presentations and workshops at various conferences and meetups, in-person and remotely, on topics including PHP, Drupal, automated testing, Git, CSS, and systems administration.
2024-01-03 20:00:00 +00:00
2024-01-22 23:23:28 +00:00
{% for talk in data.talks|sort((a, b) => a.events|first.date|date('U') > b.events|first.date|date('U') ? -1 : 1) %}
2024-01-03 20:00:00 +00:00
<article>
<div class="not-prose">
<h2 class="text-xl font-bold">
<a class="font-bold text-blue-primary dark:text-blue-400" href="{{ talk.url|trim('/', 'right') }}">{{ talk.title }}</a>
</h2>
</div>
<p>{{ talk.description }}</p>
</article>
{% endfor %}