Skip to content

Commit ff1c193

Browse files
committed
Merge branch 'ep2025' into ep2025-buffer
2 parents dc9b8da + 5a2dec9 commit ff1c193

File tree

5 files changed

+123
-6
lines changed

5 files changed

+123
-6
lines changed

src/components/SponsorCard.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ const logo = sponsorLogos[sponsor.id];
6767
description && (
6868
<div class="flex-1">
6969
<h2 class="text-2xl font-bold mb-2 ">
70-
{ !isSponsorPage ?
70+
{ !isSponsorPage && tier !== 'Partners' ?
7171
<a href={`/sponsor/${sponsor.id}`}>
7272
{title}
7373
</a> :

src/content/pages/faq.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ We aim to cover the many ways Python is used to solve problems and create exciti
8080
**Summits** are unconference-style, topic-focused full-day gatherings for subject experts. These sessions focus on knowledge sharing
8181
and exploration of key issues within specific fields.
8282

83-
Summits usually take place on **Tutorial Days**, with around 30 participants or fewer. Signup information can typically be found under ***Programme*** in the website menu.
83+
Summits usually take place on **Tutorial Days**, with around 30 participants or fewer. Signup information can typically be found under ***Events*** in the website menu.
8484

8585
Past highlights have included topics like C-API and WASM.
8686

@@ -142,7 +142,8 @@ We aim to cover the many ways Python is used to solve problems and create exciti
142142

143143
---
144144

145-
**Events** are social and networking activities organised by EuroPython volunteers to connect attendees, celebrate the community, and have fun. These can include special workshops, social events, dinners, meetups, and more.
145+
**Events** cover a broad mix of activities organised by members of our EuroPython community. They range from social and networking gatherings to special conference sessions like summits, themed workshops, and other unique formats.
146+
These are designed to bring people together, dive into shared interests, and explore different aspects of the Python community beyond regular talks and tutorials.
146147

147148
Events take place throughout the conference and are listed under the ***Events*** section of the website.
148149
Signup details for each event are usually available on its specific event page.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
name: "PyCon Finland"
3+
url: "http://fi.pycon.org"
4+
location: "Finland"
5+
industry: "Technology & Non-Profit"
6+
description:
7+
"PyCon Finland is back after almost a decade. As part of the annual Plone
8+
Conference, welcome to Jyväskylä on 17th October 2025 for a dedicated Python
9+
day."
10+
socials:
11+
linkedin: "https://www.linkedin.com/company/pyconfi/"
12+
twitter:
13+
github:
14+
discord:
15+
mastodon: "https://fosstodon.org/@pyconfi"
16+
bluesky: "https://bsky.app/profile/pyconfi.bsky.social"
17+
tier: Partners
18+
logo_padding: 0 0
19+
---
Lines changed: 95 additions & 0 deletions
Loading

src/pages/sponsor/[sponsor]/index.astro

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@ const {sponsor } = Astro.params;
1111
1212
export async function getStaticPaths() {
1313
14-
const sponsors = await getCollection("sponsors", ({ data }) => {
15-
return import.meta.env.MODE === "production" ? data.draft !== true : true;
16-
});
14+
const isProduction = import.meta.env.MODE === "production";
15+
16+
const sponsors = await getCollection("sponsors", ({ data }) =>
17+
data.tier !== "Partners" && (isProduction ? data.draft !== true : true)
18+
);
1719
1820
return sponsors.map((sponsor: any) => ({
1921
params: {

0 commit comments

Comments
 (0)