fix: reverse the order of the talks
This commit is contained in:
parent
66f253d768
commit
07e7871c1e
|
@ -10,7 +10,7 @@ Drupal, automated testing, Git, CSS, and systems administration.</p>
|
||||||
|
|
||||||
<div class="mt-10">
|
<div class="mt-10">
|
||||||
<div class="space-y-8">
|
<div class="space-y-8">
|
||||||
{% for talk in data.talks|sort((a, b) => get_last_event_date_for_talk(a) <=> get_last_event_date_for_talk(b)) %}
|
{% for talk in data.talks|sort((a, b) => get_last_event_date_for_talk(b) <=> get_last_event_date_for_talk(a)) %}
|
||||||
<article>
|
<article>
|
||||||
<h2>
|
<h2>
|
||||||
<a class="dark:text-blue-400 text-blue-primary" href="{{ talk.url|trim('/', 'right') }}">
|
<a class="dark:text-blue-400 text-blue-primary" href="{{ talk.url|trim('/', 'right') }}">
|
||||||
|
|
Loading…
Reference in a new issue