Skip to content

Commit 9f7e4c8

Browse files
authored
content(partners): Add CLUG (#1513)
Add Cracow Linux Users Group as a community partner.
1 parent 7df090e commit 9f7e4c8

File tree

3 files changed

+87
-2
lines changed

3 files changed

+87
-2
lines changed

src/components/sections/community-partners.astro

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,21 @@ const allPartners = await getCollection("sponsors", ({ data }) => {
1515
1616
const isPyData = (name: string) => name.startsWith("PyData");
1717
18+
const isLUGorHS = (name: string) => (name.includes("Linux") || name.includes("Hackerspace"));
19+
1820
const regular = allPartners
19-
.filter(p => !isPyData(p.data.name))
21+
.filter(p => (!isPyData(p.data.name)) && !isLUGorHS(p.data.name))
2022
.sort((a, b) => a.data.name.localeCompare(b.data.name));
2123
2224
const pydata = allPartners
2325
.filter(p => isPyData(p.data.name))
2426
.sort((a, b) => a.data.name.localeCompare(b.data.name));
2527
26-
const partners = [...regular, ...pydata];
28+
const lugorhs = allPartners
29+
.filter(p => isLUGorHS(p.data.name))
30+
.sort((a, b) => a.data.name.localeCompare(b.data.name));
31+
32+
const partners = [...regular, ...pydata, ...lugorhs];
2733
2834
const sectionTitle = "Community Partners";
2935
const sectionSubtitle = "Meet the local Python communities joining us at EuroPython 2026";

src/content/sponsors/clug/clug.svg

Lines changed: 60 additions & 0 deletions
Loading

src/content/sponsors/clug/index.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
name: Cracow Linux Users Group
3+
url: https://clug.space/
4+
location: "Poland"
5+
industry: "Technology & Community"
6+
description:
7+
"Cracow Linux Users Group is a community of enthusiasts of computer science,
8+
technology and operating systems from the Unix family. We help organize
9+
conference events and trainings."
10+
socials:
11+
linkedin:
12+
twitter:
13+
github:
14+
discord:
15+
mastodon:
16+
bluesky:
17+
logo_padding: 10px
18+
tier: Partners
19+
---

0 commit comments

Comments
 (0)