Commit theme changes from pairing with Chris

This commit is contained in:
Oliver Davies 2021-06-30 08:00:00 +01:00
parent 789b665522
commit 4bf3f51546
8 changed files with 45 additions and 74 deletions

View file

@ -4,14 +4,20 @@ use:
- talks
---
{% for talk in data.talks|sort((a,b) => a.sortable_date < b.sortable_date) %}
<article>
<h2>
<a href="{{ talk.url }}">
{{ talk.title }}
</a>
</h2>
<p class="mt-4 text-xl">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>
<p>{{ talk.description }}</p>
</article>
{% endfor %}
<div class="mt-6">
<div class="space-y-6">
{% for talk in data.talks|sort((a,b) => a.sortable_date < b.sortable_date) %}
<article>
<h2 class="text-xl">
<a class="text-blue-400" href="{{ talk.url }}">
{{ talk.title }}
</a>
</h2>
<p class="mt-1 text-xl leading-7">{{ talk.description }}</p>
</article>
{% endfor %}
</div>
</div>