Skip to content

Commit 0381fab

Browse files
committed
Add community partners.
1 parent 3001a20 commit 0381fab

File tree

8 files changed

+28
-6
lines changed

8 files changed

+28
-6
lines changed

src/content/sponsors/1password/product-design-intern.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,4 @@ benefits:
2323
- "Opportunity to shape products used by millions."
2424
- "Access to 1Password’s design community."
2525
apply_link: "https://1password.com/careers"
26-
draft: true
2726
---

src/content/sponsors/djangocon/index.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@ name: DjangoCon Europe
33
url: https://2025.djangocon.eu/
44
industry: "Technology & Open Source Community"
55
description:
6-
"DjangoCon Europe is a volunteer-driven, non-profit conference dedicated to
7-
fostering the growth and development of the Django community. It brings
8-
together developers, designers, and enthusiasts to share knowledge and
9-
collaborate on open-source projects."
106
socials:
117
linkedin: "https://linkedin.com/company/djangoconeurope"
128
twitter: "https://twitter.com/DjangoConEurope"

src/content/sponsors/eps/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ socials:
1313
mastodon:
1414
bluesky:
1515
tier: Financial Aid
16+
draft: true
1617
---
1718

1819
## About EuroPython Society

src/content/sponsors/pretalx/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ socials:
1515
mastodon:
1616
bluesky:
1717
tier: Supporters
18+
draft: true
1819
---
1920

2021
## About Pretalx

src/content/sponsors/pyvec/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ socials:
1616
bluesky:
1717
tier: Partners
1818
logo_padding: 30px 20px
19-
draft: true
2019
---
2120

2221
## About PyVEC
File renamed without changes.
File renamed without changes.

src/pages/community-partners.astro

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
import { getCollection } from "astro:content";
3+
import Layout from "@layouts/SectionLayout.astro";
4+
import SponsorCard from "@components/SponsorCard.astro";
5+
6+
const sponsors = await getCollection("sponsors", ({ data }) => {
7+
const isProd = import.meta.env.MODE === "production";
8+
const notDraft = !isProd || data.draft !== true;
9+
const isPartner = data.tier === "Partners";
10+
return notDraft && isPartner;
11+
});
12+
13+
---
14+
15+
<Layout
16+
title="EuroPython 2025 | July 14th-20th 2025 | Prague, Czech Republic & Remote"
17+
description="EuroPython is the largest Python conference in Europe. We are looking forward to seeing you in Prague, Czech Republic & Remote from July 14th-20th 2025."
18+
>
19+
{sponsors.length > 0 && (
20+
<section class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6 p-4 md:p-6">
21+
{sponsors.map((sponsor) => (
22+
<SponsorCard sponsor={sponsor.id} />
23+
))}
24+
</section>
25+
)}
26+
</Layout>

0 commit comments

Comments
 (0)