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:
23
23
- " Opportunity to shape products used by millions."
24
24
- " Access to 1Password’s design community."
25
25
apply_link : " https://1password.com/careers"
26
- draft : true
27
26
---
Original file line number Diff line number Diff line change @@ -3,10 +3,6 @@ name: DjangoCon Europe
3
3
url : https://2025.djangocon.eu/
4
4
industry : " Technology & Open Source Community"
5
5
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."
10
6
socials :
11
7
linkedin : " https://linkedin.com/company/djangoconeurope"
12
8
twitter : " https://twitter.com/DjangoConEurope"
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ socials:
13
13
mastodon :
14
14
bluesky :
15
15
tier : Financial Aid
16
+ draft : true
16
17
---
17
18
18
19
## About EuroPython Society
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ socials:
15
15
mastodon :
16
16
bluesky :
17
17
tier : Supporters
18
+ draft : true
18
19
---
19
20
20
21
## About Pretalx
Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ socials:
16
16
bluesky :
17
17
tier : Partners
18
18
logo_padding : 30px 20px
19
- draft : true
20
19
---
21
20
22
21
## 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