Skip to content

Commit 1c5a2bf

Browse files
authored
Merge branch 'ep2026' into fix-speaker-ordering-1282
2 parents 56f5b47 + c4deed9 commit 1c5a2bf

3 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/content/config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ const pages = defineCollection({
1111
title: z.string(),
1212
subtitle: z.string(),
1313
toc: z.boolean().optional().default(true),
14+
full: z.boolean().optional().default(false),
1415
}),
1516
});
1617

src/content/pages/sponsorship/sponsor.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ subtitle:
55
and the opportunity to present yourself and your company to one
66
of the largest and most diverse Python communities in Europe and beyond.
77
toc: false
8+
full: true
89
---
910

1011
# Why Sponsor EuroPython?

src/pages/[...slug].astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ const description = post.data.subtitle;
6464
---
6565

6666
<Layout title={title} description={description} toc={post.data.toc}>
67-
<Prose class="pb-20">
67+
<Prose class="pb-20" full={post.data.full}>
6868
<Content
6969
components={{
7070
Button,

0 commit comments

Comments
 (0)