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
10 changes: 8 additions & 2 deletions src/components/sections/community-partners.astro
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,21 @@ const allPartners = await getCollection("sponsors", ({ data }) => {

const isPyData = (name: string) => name.startsWith("PyData");

const isLUGorHS = (name: string) => (name.includes("Linux") || name.includes("Hackerspace"));

const regular = allPartners
.filter(p => !isPyData(p.data.name))
.filter(p => (!isPyData(p.data.name)) && !isLUGorHS(p.data.name))
.sort((a, b) => a.data.name.localeCompare(b.data.name));

const pydata = allPartners
.filter(p => isPyData(p.data.name))
.sort((a, b) => a.data.name.localeCompare(b.data.name));

const partners = [...regular, ...pydata];
const lugorhs = allPartners
.filter(p => isLUGorHS(p.data.name))
.sort((a, b) => a.data.name.localeCompare(b.data.name));

const partners = [...regular, ...pydata, ...lugorhs];
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we will need to come up with something generic here later, but that's good for now :)


const sectionTitle = "Community Partners";
const sectionSubtitle = "Meet the local Python communities joining us at EuroPython 2026";
Expand Down
60 changes: 60 additions & 0 deletions src/content/sponsors/clug/clug.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions src/content/sponsors/clug/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
name: Cracow Linux Users Group
url: https://clug.space/
location: "Poland"
industry: "Technology & Community"
description:
"Cracow Linux Users Group is a community of enthusiasts of computer science,
technology and operating systems from the Unix family. We help organize
conference events and trainings."
socials:
linkedin:
twitter:
github:
discord:
mastodon:
bluesky:
logo_padding: 10px
tier: Partners
---