Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/content/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ const pages = defineCollection({
title: z.string(),
subtitle: z.string(),
toc: z.boolean().optional().default(true),
full: z.boolean().optional().default(false),
}),
});

Expand Down
1 change: 0 additions & 1 deletion src/content/pages/sponsorship/sponsor.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ subtitle:
and the opportunity to present yourself and your company to one
of the largest and most diverse Python communities in Europe and beyond.
toc: false
full: true
---

# Why Sponsor EuroPython?
Expand Down
2 changes: 1 addition & 1 deletion src/pages/[...slug].astro
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const description = post.data.subtitle;
---

<Layout title={title} description={description} toc={post.data.toc}>
<Prose class="pb-20" full={post.data.full}>
<Prose class="pb-20">
<Content
components={{
Button,
Expand Down