Skip to content

Commit 3ab4e7f

Browse files
update events section
1 parent 791a984 commit 3ab4e7f

9 files changed

Lines changed: 88 additions & 2 deletions

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description: >
1010
maintain the community’s shared research, software tools, and hardware platforms for scientific applications
1111
with the highest standards of inclusiveness, openness, accountability, and transparency.
1212
news_byline: >
13-
We share upcoming and recent events for the community.
13+
We share upcoming and past events for the community.
1414
1515
collaboration:
1616
byline: We are a community that fosters knowledge transfer of accelerated and real-time artificial intelligence for fundamental science. By participating, you agree to abide by our code of conduct and collaboration policies.

_data/events.yml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Past FastML conferences shown in the Events section.
2+
# Add entries using the format below:
3+
#
4+
# - title: "FastML Conference 2025"
5+
# date: "Sep 1-5, 2025"
6+
# location: "ETH Zurich"
7+
# image: "/images/your-poster-file.png"
8+
# external_link: "https://conference-url.example"
9+
10+
- title: "Fast Machine Learning for Science Conference 2025"
11+
date: "Sep 1-5, 2025"
12+
location: "ETH Zurich"
13+
image: "/images/fastml_poster_2025.png"
14+
external_link: "https://indico.cern.ch/event/1496673/"
15+
16+
- title: "Fast Machine Learning for Science Conference 2024"
17+
date: "Oct 15-18, 2024"
18+
location: "Purdue University"
19+
image: "/images/fastml_poster_2024.png"
20+
external_link: "https://indico.cern.ch/event/1387540/"
21+
22+
- title: "Fast Machine Learning for Science Workshop 2023"
23+
date: "Sep 25-28, 2023"
24+
location: "Imperial College London"
25+
image: "/images/fastml_poster_2023.png"
26+
external_link: "https://indico.cern.ch/event/1283970/"
27+
28+
- title: "Fast Machine Learning for Science Workshop 2022"
29+
date: "Oct 3-6, 2022"
30+
location: "Southern Methodist University"
31+
image: "/images/fastml_poster_2022.png"
32+
external_link: "https://indico.cern.ch/event/1156222/"
33+
34+
- title: "Fast Machine Learning Workshop 2020"
35+
date: "Nov 30-Dec 3, 2020"
36+
location: "Virtual, hosted by Southern Methodist University"
37+
image: "/images/fastml_poster_2020.png"
38+
external_link: "https://indico.cern.ch/event/924283/"
39+
40+
- title: "Fast Machine Learning Workshop 2019"
41+
date: "Sep 10-13, 2019"
42+
location: "Fermi National Accelerator Laboratory"
43+
image: "/images/fastml_poster_2019.png"
44+
external_link: "https://indico.cern.ch/event/822126/"

images/fastml_poster_2019.png

1.06 MB
Loading

images/fastml_poster_2020.png

936 KB
Loading

images/fastml_poster_2022.png

2.27 MB
Loading

images/fastml_poster_2023.png

1.66 MB
Loading

images/fastml_poster_2024.png

771 KB
Loading

images/fastml_poster_2025.png

778 KB
Loading

index.html

Lines changed: 43 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,48 @@ <h1 class="display-5 fw-bold text-center">Events</h1>
2828
<div class="col-lg-6 mx-auto text-center">
2929
<p class="lead mb-4">{{ site.news_byline | markdownify }}</p>
3030
</div>
31+
<div class="col-lg-5 mx-auto">
32+
{% if site.data.events and site.data.events.size > 0 %}
33+
{% for event in site.data.events %}
34+
<div class="row">
35+
<div class="card m-2 post-preview">
36+
<div class="row g-0">
37+
<div class="col-md-4 d-flex align-items-center">
38+
{% assign event_image_url = event.image %}
39+
{% unless event.image contains '://' %}
40+
{% assign event_image_url = site.baseurl | append: event.image %}
41+
{% endunless %}
42+
<a href="{{ event_image_url }}" target="_blank" rel="noopener noreferrer">
43+
{% if event.image contains '://' %}
44+
<img src="{{ event.image }}" class="img-fluid rounded-start" alt="{{ event.title }}"
45+
style="max-width: 100%;">
46+
{% else %}
47+
<img src="{{ site.baseurl }}{{ event.image }}" class="img-fluid rounded-start" alt="{{ event.title }}"
48+
style="max-width: 100%;">
49+
{% endif %}
50+
</a>
51+
</div>
52+
<div class="col-md-8">
53+
<div class="card-body">
54+
<h4 class="card-title text-center">{{ event.title }}</h4>
55+
{% if event.date and event.date != "" %}
56+
<p class="card-text text-center mb-1">{{ event.date }}</p>
57+
{% endif %}
58+
{% if event.location and event.location != "" %}
59+
<p class="card-text text-center mb-3"><em>{{ event.location }}</em></p>
60+
{% endif %}
61+
<div class="d-flex justify-content-center"><a href="{{ event.external_link }}"
62+
class="btn btn-primary">View Details</a></div>
63+
</div>
64+
</div>
65+
</div>
66+
</div>
67+
</div>
68+
{% endfor %}
69+
{% else %}
70+
<p class="text-center text-muted">Past FastML conference highlights will be added soon.</p>
71+
{% endif %}
72+
</div>
3173
</div>
3274
</div>
3375
<div class="bg-light container-fluid">
@@ -47,7 +89,7 @@ <h1 class="pb-4 display-5 fw-bold">Resources</h1>
4789
<h4 class="card-title text-center">{{post.title}}</h4>
4890
<p class="card-text">{{post.description}}</p>
4991
<div class="d-flex justify-content-center"><a href="{{post.external_link}}"
50-
class="btn btn-primary">Learn More</a></div>
92+
class="btn btn-primary">View Details</a></div>
5193
</div>
5294
</div>
5395
</div>

0 commit comments

Comments
 (0)