From b6557d4ece85440ff6d6bbcf67bc1d53385139bb Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sat, 30 Nov 2024 21:04:23 +0000 Subject: [PATCH] Update variable names --- source/_pages/presentations.html.twig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/_pages/presentations.html.twig b/source/_pages/presentations.html.twig index 9a024cd27..afc12ec99 100644 --- a/source/_pages/presentations.html.twig +++ b/source/_pages/presentations.html.twig @@ -8,14 +8,14 @@ use: [presentations]

Since September 2012, I have given {{ presentation_count }} 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.

-{% for talk in data.presentations|sort((a, b) => a.events|last.date|date('U') > b.events|last.date|date('U') ? -1 : 1) %} +{% for presentation in data.presentations|sort((a, b) => a.events|last.date|date('U') > b.events|last.date|date('U') ? -1 : 1) %}
-

{{ talk.description }}

+

{{ presentation.description }}

{% endfor %}