{{ talk.description }}
+{{ presentation.description }}
diff --git a/source/_pages/presentations.html.twig b/source/_pages/presentations.html.twig index 9a024cd2..afc12ec9 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 }}