From 029071fe53c6ac08c002b032ef7168e1b67b5d1d Mon Sep 17 00:00:00 2001 From: Pete Cheslock Date: Thu, 11 Sep 2025 16:30:04 -0400 Subject: [PATCH 1/2] Add upcoming events page to community documentation Signed-off-by: Pete Cheslock --- docs/community/events.md | 182 +++++++++++++++++++++++++++++++++++++++ docs/community/index.md | 1 + 2 files changed, 183 insertions(+) create mode 100644 docs/community/events.md diff --git a/docs/community/events.md b/docs/community/events.md new file mode 100644 index 0000000..785ff24 --- /dev/null +++ b/docs/community/events.md @@ -0,0 +1,182 @@ +--- +title: Upcoming llm-d Events +description: Meet the llm-d community at upcoming talks, meetups, and conferences +sidebar_label: Upcoming llm-d Events +sidebar_position: 2 +--- + +# Upcoming llm-d Events + +Stay connected with the llm-d community at meetups, conferences, and workshops. All meetings are open to the public unless noted otherwise. + +## September 2025 + +
+
+
+

PyTorch ATX: The Future of Inferencing

+
+ ๐Ÿ“ Austin, TX +
+

Sep 17, 2025 ยท Free

+
+ Register +
+ +
+
+

Boston vLLM + llm-d Meetup

+
+ ๐Ÿ“ Boston, MA +
+

Sep 18, 2025 ยท Free

+
+ Register +
+ +
+
+

DevConf.US 2025

+
+ ๐Ÿ“ Boston, MA +
+

Sep 19โ€“20, 2025 ยท Free

+
+ Register +
+
+ +## October 2025 + +
+
+
+

PyTorch Conference 2025

+
+ ๐Ÿ“ San Francisco, CA +
+

Oct 22โ€“23, 2025 ยท Paid

+
+ Register +
+
+ +## November 2025 + +
+
+
+

KubeCon + CloudNativeCon North America 2025

+
+ ๐Ÿ“ Atlanta, GA +
+

Nov 10โ€“13, 2025 ยท Paid

+
+ Register +
+
\ No newline at end of file diff --git a/docs/community/index.md b/docs/community/index.md index 1da1024..a331728 100644 --- a/docs/community/index.md +++ b/docs/community/index.md @@ -23,6 +23,7 @@ This page is your gateway to everything you need to know about participating in ## Community Resources ### Getting Involved +- ๐Ÿ“… **[Upcoming Events](/docs/community/events)** - Meetups, talks, and conferences - ๐Ÿ“ **[Contributing Guidelines](/docs/community/contribute)** - Complete guide to contributing code, docs, and ideas - ๐Ÿ‘ฅ **[Special Interest Groups (SIGs)](/docs/community/sigs)** - Join focused teams working on specific areas - ๐Ÿค **[Code of Conduct](/docs/community/code-of-conduct)** - Our community standards and values From e42f715f84bda5b2ff5723722f43630e5ded5e0e Mon Sep 17 00:00:00 2001 From: Pete Cheslock Date: Thu, 11 Sep 2025 16:47:14 -0400 Subject: [PATCH 2/2] Refactor community events documentation to use a dynamic rendering approach Signed-off-by: Pete Cheslock --- docs/community/events.md | 240 ++++++++++++++------------------------- 1 file changed, 88 insertions(+), 152 deletions(-) diff --git a/docs/community/events.md b/docs/community/events.md index 785ff24..ebf23b8 100644 --- a/docs/community/events.md +++ b/docs/community/events.md @@ -9,73 +9,60 @@ sidebar_position: 2 Stay connected with the llm-d community at meetups, conferences, and workshops. All meetings are open to the public unless noted otherwise. -## September 2025 +{(() => { + const events = [ + { + month: 'September 2025', + title: 'PyTorch ATX: The Future of Inferencing', + location: 'Austin, TX', + dateText: 'Sep 17, 2025', + cost: 'Free', + href: 'https://www.meetup.com/pytorch-atx/events/307742180/', + }, + { + month: 'September 2025', + title: 'Boston vLLM + llm-d Meetup', + location: 'Boston, MA', + dateText: 'Sep 18, 2025', + cost: 'Free', + href: 'https://luma.com/vjfelimw', + }, + { + month: 'September 2025', + title: 'DevConf.US 2025', + location: 'Boston, MA', + dateText: 'Sep 19โ€“20, 2025', + cost: 'Free', + href: 'https://www.devconf.info/us/', + }, + { + month: 'October 2025', + title: 'PyTorch Conference 2025', + location: 'San Francisco, CA', + dateText: 'Oct 22โ€“23, 2025', + cost: 'Paid', + href: 'https://events.linuxfoundation.org/pytorch-conference/', + }, + { + month: 'November 2025', + title: 'KubeCon + CloudNativeCon North America 2025', + location: 'Atlanta, GA', + dateText: 'Nov 10โ€“13, 2025', + cost: 'Paid', + href: 'https://events.linuxfoundation.org/kubecon-cloudnativecon-north-america/', + }, + ]; -
-
-
-

PyTorch ATX: The Future of Inferencing

-
- ๐Ÿ“ Austin, TX -
-

Sep 17, 2025 ยท Free

-
- Register -
+ const months = Array.from(new Set(events.map((e) => e.month))); -
-
-

Boston vLLM + llm-d Meetup

-
- ๐Ÿ“ Boston, MA -
-

Sep 18, 2025 ยท Free

-
- Register -
+ marginTop: '12px' + }; -
-
-

DevConf.US 2025

-
- ๐Ÿ“ Boston, MA -
-

Sep 19โ€“20, 2025 ยท Free

-
- Register -
-
+ }; -## October 2025 + const buttonStyle = { + display: 'inline-block', + padding: '10px 16px', + backgroundColor: 'var(--ifm-color-primary)', + color: 'white', + textDecoration: 'none', + borderRadius: '6px', + fontWeight: 600 + }; -
-
-
-

PyTorch Conference 2025

-
- ๐Ÿ“ San Francisco, CA -
-

Oct 22โ€“23, 2025 ยท Paid

-
- Register -
-
+ const sectionStyle = { + marginBottom: '28px' + }; -## November 2025 - -
-
+ return (
-

KubeCon + CloudNativeCon North America 2025

-
- ๐Ÿ“ Atlanta, GA -
-

Nov 10โ€“13, 2025 ยท Paid

+ {months.map((m) => { + const monthEvents = events.filter((e) => e.month === m); + if (monthEvents.length === 0) return null; + return ( +
+

{m}

+
+ {monthEvents.map((e) => ( +
+
+

{e.title}

+
+ ๐Ÿ“ {e.location} +
+

{e.dateText} ยท {e.cost}

+
+ Register +
+ ))} +
+
+ ); + })}
- Register -
-
\ No newline at end of file + ); +})()} \ No newline at end of file