diff --git a/source/_pages/blog.html.twig b/source/_pages/blog.html.twig index a03e9b90..0f04f89e 100644 --- a/source/_pages/blog.html.twig +++ b/source/_pages/blog.html.twig @@ -6,8 +6,8 @@ intro_text: | TODO: update text --- -
-
+
+
{% for talk in data.posts|sort((a, b) => a.date < b.date) %}

diff --git a/source/_pages/talks.html.twig b/source/_pages/talks.html.twig index a5048c28..9d276e92 100644 --- a/source/_pages/talks.html.twig +++ b/source/_pages/talks.html.twig @@ -6,8 +6,8 @@ intro_text: | Starting with my first talk in September 2012, I have 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. --- -
-
+
+
{% for talk in data.talks|sort((a,b) => a.sortable_date < b.sortable_date) %}