Skip to content
Merged
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
18 changes: 18 additions & 0 deletions src/content/pages/open-spaces.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ title: EuroPython 2025 Open Spaces
subtitle: Organise or join an open space at EuroPython 2025!
---

import { Image } from 'astro:assets';
import anacondaLogo from '../sponsors/anaconda/anaconda.svg';

# EuroPython 2025 Open Spaces

At EuroPython 2025, Open Spaces offer a unique opportunity for attendees to
Expand Down Expand Up @@ -78,3 +81,18 @@ Open Space sessions can cover a wide range of topics, such as:

… and anything else you want to explore together — non-coding stuff is very
welcomed too!

<Headline center title="Big Thanks to Our Sponsor" />

<div class="flex justify-center">
<a href="https://www.anaconda.com" target="_blank" rel="noopener noreferrer" class="hover:scale-105 transition-transform external">
<Image
src={anacondaLogo}
alt="Anaconda"
width={200}
height={80}
/>
</a>
</div>

<span class="text-lg text-center block">We're grateful to have <b>Anaconda</b> as our <b>Open Space sponsor</b>!</span>
2 changes: 2 additions & 0 deletions src/pages/[...slug].astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import { type CollectionEntry, getCollection } from "astro:content";
import Layout from "@layouts/MarkdownLayout.astro";

import Headline from "@ui/Headline.astro";
import Separator from "@ui/Separator.astro";
import Map from "@components/Map.astro";
import YouTube from "@ui/YouTube.astro";
Expand Down Expand Up @@ -56,6 +57,7 @@ const description = post.data.subtitle;
<Content
components={{
Button,
Headline,
Icon,
IconLabel,
Center,
Expand Down
21 changes: 21 additions & 0 deletions src/pages/sprints.astro
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ import { getEntry, render } from 'astro:content';
import Layout from '@layouts/MarkdownLayout.astro';
import SprintCard from '@components/SprintCard.astro';
import Markdown from "@ui/Markdown.astro";
import Headline from "@ui/Headline.astro";
import Prose from "@ui/Prose.astro";

import { Image } from 'astro:assets';
import anacondaLogo from '@src/content/sponsors/anaconda/anaconda.svg';

const entry = await getEntry('pages', 'sprints_info');

Expand Down Expand Up @@ -48,6 +53,22 @@ const sprints = await getCollection("sprints", ({ data }) => {
<p class="text-gray-500 text-lg">No sprints are currently available. Check back soon!</p>
</div>
)}
<Prose>
<Headline center title="Big Thanks to Our Sponsor" />

<div class="flex justify-center">
<a href="https://www.anaconda.com" target="_blank" rel="noopener noreferrer" class="hover:scale-105 transition-transform external">
<Image
src={anacondaLogo}
alt="Anaconda"
width={200}
height={80}
/>
</a>
</div>

<span class="text-lg text-center block">We're grateful to have <b>Anaconda</b> as our <b>Sprints sponsor</b>!</span>
</Prose>
</Layout>

<script>
Expand Down