diff --git a/_layouts/default.html b/_layouts/default.html index 3fafabbe59..0cea574180 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -45,22 +45,31 @@

Elevating community-centered scienti
{% assign talks = site.talks| where: "given", false | sort: 'order'%} - {% for talk in talks limit: 1 %} + {% assign talk = talks.first %}
Community talk banner
Community talk + {% if talk %}

{{ talk.title }}

{{ talk.authors }}

{{ talk.event_date }}

+ {% else %} +

Workflow Community Talks

+

A 30 minute virtual series highlighting workflow systems, research frameworks, and community practices

+

Monthly talks open to all

+ {% endif %}
- {% endfor %}
diff --git a/_talks/2026_01_14.html b/_talks/2026_01_14.html index ef94be253e..4fbf9eff46 100644 --- a/_talks/2026_01_14.html +++ b/_talks/2026_01_14.html @@ -5,9 +5,9 @@ event_date: January 14, 2026 times: 11:00am PST / 2:00pm EST / 20:00 CEST talk_number: 10 -given: false +given: true image: /images/talks/janssen-banner.jpg - +presentation: /files/talks/0260114-Janssen-executorlib.pdf --- @@ -51,4 +51,4 @@ challenges identified as part of DOE Exascale Computing Project's EXAALT effort to demonstrate how the development process was drastically simplified by using executorlib, with a specific focus on dynamic dependencies which are only -resolved during run time of the Python workflow. \ No newline at end of file +resolved during run time of the Python workflow. diff --git a/files/talks/0260114-Janssen-executorlib.pdf b/files/talks/0260114-Janssen-executorlib.pdf new file mode 100644 index 0000000000..2b11addee9 Binary files /dev/null and b/files/talks/0260114-Janssen-executorlib.pdf differ diff --git a/index.html b/index.html index 4028ed9390..fc468b4362 100644 --- a/index.html +++ b/index.html @@ -27,11 +27,12 @@

What's Happening in the Community

{% assign talks = site.talks| where: "given", false | sort: 'order'%} - {% for talk in talks limit: 1 %} + {% assign talk = talks.first %}

COMMUNITY TALK

+ {% if talk %}

{{ talk.title }}

@@ -43,7 +44,19 @@

- {% endfor %} + {% else %} +

+ Workflow Community Talks +

+
+ +
+ {% endif %}