File tree Expand file tree Collapse file tree 8 files changed +28
-6
lines changed Expand file tree Collapse file tree 8 files changed +28
-6
lines changed Original file line number Diff line number Diff line change @@ -23,5 +23,4 @@ benefits:
2323 - " Opportunity to shape products used by millions."
2424 - " Access to 1Password’s design community."
2525apply_link : " https://1password.com/careers"
26- draft : true
2726---
Original file line number Diff line number Diff line change @@ -3,10 +3,6 @@ name: DjangoCon Europe
33url : https://2025.djangocon.eu/
44industry : " Technology & Open Source Community"
55description :
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."
106socials :
117 linkedin : " https://linkedin.com/company/djangoconeurope"
128 twitter : " https://twitter.com/DjangoConEurope"
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ socials:
1313 mastodon :
1414 bluesky :
1515tier : Financial Aid
16+ draft : true
1617---
1718
1819## About EuroPython Society
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ socials:
1515 mastodon :
1616 bluesky :
1717tier : Supporters
18+ draft : true
1819---
1920
2021## About Pretalx
Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ socials:
1616 bluesky :
1717tier : Partners
1818logo_padding : 30px 20px
19- draft : true
2019---
2120
2221## About PyVEC
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments