Skip to content

Commit ac04222

Browse files
authored
Merge branch 'ep2025' into ep2025-code
2 parents 6f791cf + 686089a commit ac04222

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/pages/community-partners.astro

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ import Layout from "@layouts/SectionLayout.astro";
44
import SponsorCard from "@components/SponsorCard.astro";
55
import Headline from "@ui/Headline.astro";
66
7-
const sponsors = await getCollection("sponsors", ({ data }) => {
7+
const sponsors = (await getCollection("sponsors", ({ data }) => {
88
const isProd = import.meta.env.MODE === "production";
99
const notDraft = !isProd || data.draft !== true;
1010
const isPartner = data.tier === "Partners";
1111
return notDraft && isPartner;
12-
});
12+
})).sort((a, b) => a.id.localeCompare(b.id));
1313
1414
---
1515

@@ -30,4 +30,6 @@ const sponsors = await getCollection("sponsors", ({ data }) => {
3030
))}
3131
</div>
3232
)}
33-
</Layout>
33+
<p class="pb-5">
34+
Are you a Python Community organiser, interested in knowing more about EuroPython Society? Feel free to reach out at [email protected]!
35+
</p></Layout>

0 commit comments

Comments
 (0)