Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,22 +45,31 @@ <h2 data-aos="fade-up" data-aos-delay="100">Elevating community-centered scienti
</div>
<div class="col-lg-5 d-flex flex-column justify-content-start hero-spotlight">
{% assign talks = site.talks| where: "given", false | sort: 'order'%}
{% for talk in talks limit: 1 %}
{% assign talk = talks.first %}
<div class="hero-card" data-aos="fade-left" data-aos-delay="200">
<a href="/talks" class="hero-card-media">
<img src="/images/talks/banner.png" alt="Community talk banner" />
</a>
<div class="hero-card-body">
<span class="hero-tag">Community talk</span>
{% if talk %}
<h3 class="hero-card-title"><a href="{{ talk.url }}">{{ talk.title }}</a></h3>
<p class="hero-card-meta">{{ talk.authors }}</p>
<p class="hero-card-date">{{ talk.event_date }}</p>
{% else %}
<h3 class="hero-card-title"><a href="/talks">Workflow Community Talks</a></h3>
<p class="hero-card-meta">A 30 minute virtual series highlighting workflow systems, research frameworks, and community practices</p>
<p class="hero-card-date">Monthly talks open to all</p>
{% endif %}
</div>
<div class="hero-card-footer">
{% if talk %}
<a href="{{ talk.url }}" class="hero-card-link">Learn more</a>
{% else %}
<a href="/talks" class="hero-card-link">View all talks</a>
{% endif %}
</div>
</div>
{% endfor %}
</div>
</div>
</div>
Expand Down
6 changes: 3 additions & 3 deletions _talks/2026_01_14.html
Original file line number Diff line number Diff line change
Expand Up @@ -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: -->
presentation: /files/talks/0260114-Janssen-executorlib.pdf
<!-- video: -->
---

Expand Down Expand Up @@ -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.
resolved during run time of the Python workflow.
Binary file added files/talks/0260114-Janssen-executorlib.pdf
Binary file not shown.
17 changes: 15 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,12 @@ <h2>What's Happening in the Community</h2>
<!-- COMMUNITY TALKS -->
<article class="community-card">
{% assign talks = site.talks| where: "given", false | sort: 'order'%}
{% for talk in talks limit: 1 %}
{% assign talk = talks.first %}
<div class="post-img">
<img src="/images/talks/banner.png" alt="" class="img-fluid">
</div>
<p class="post-category">COMMUNITY TALK</p>
{% if talk %}
<h2 class="title">
<a href="{{ talk.url }}">{{ talk.title }}</a>
</h2>
Expand All @@ -43,7 +44,19 @@ <h2 class="title">
</p>
</div>
</div>
{% endfor %}
{% else %}
<h2 class="title">
<a href="/talks">Workflow Community Talks</a>
</h2>
<div class="d-flex align-items-center post-footer">
<div class="post-meta">
<p class="post-author">Highlighting workflow systems, research frameworks, and community practices</p>
<p class="post-date">
<a href="/talks">View all talks</a>
</p>
</div>
</div>
{% endif %}
</article>
</div>

Expand Down