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
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
"@astrojs/check": "^0.9.4",
"@astrojs/mdx": "^4.3.0",
"@astrojs/sitemap": "^3.4.1",
"@astrojs/svelte": "^7.0.13",
"@astrojs/svelte": "^7.1.0",
"@astrojs/ts-plugin": "^1.10.4",
"@fortawesome/fontawesome-free": "^6.7.2",
"@nanostores/persistent": "^1.0.0",
"@nanostores/persistent": "^1.1.0",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.1.11",
"astro": "^5.8.0",
"astro": "^5.11.0",
"astro-compress": "^2.3.8",
"astro-delete-unused-images": "^1.0.3",
"astro-meta-tags": "^0.3.2",
Expand All @@ -41,16 +41,16 @@
"rehype-slug": "^6.0.0",
"remark-toc": "^9.0.0",
"sharp": "^0.34.2",
"svelte": "^5.34.9",
"tailwindcss": "^4.1.8",
"svelte": "^5.35.4",
"tailwindcss": "^4.1.11",
"typescript": "^5.8.3",
"vite": "^6.3.5"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"prettier": "^3.5.3",
"prettier": "^3.6.2",
"prettier-plugin-astro": "^0.14.1",
"puppeteer": "^24.9.0",
"puppeteer": "^24.12.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
Expand Down
2,384 changes: 1,064 additions & 1,320 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

4 changes: 0 additions & 4 deletions src/components/GoogleCalendar.astro
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ const mobileEmbedUrl = `https://calendar.google.com/calendar/embed?src=${encodeU
src={embedUrl}
class="hidden md:block w-full max-w-4xl rounded-lg shadow-lg border-0"
style={`border: 0; width: ${width}px; height: ${height}px;`}
frameborder="0"
scrolling="no"
title={title}
loading="lazy"
></iframe>
Expand All @@ -54,8 +52,6 @@ const mobileEmbedUrl = `https://calendar.google.com/calendar/embed?src=${encodeU
src={mobileEmbedUrl}
class="block md:hidden w-full rounded-lg shadow-lg border-0"
style="height: 400px;"
frameborder="0"
scrolling="no"
title={`${title} - Mobile View`}
loading="lazy"
></iframe>
Expand Down
2 changes: 1 addition & 1 deletion src/components/SprintCard.astro
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const { data, body } = sprint;
// <a href={`/sprints/${slug}`} id={slug} class="text-blue-600 hover:text-blue-800 hover:underline"></a>
---

<article class=`${data.draft?"draft2":""} sprint-card bg-white border border-gray-200 rounded-lg p-6 mb-8 shadow-sm hover:shadow-md transition-shadow duration-200` data-python-level={data.pythonLevel} data-room={data.room}>
<article class=`${data.draft?"draft2":""} sprint-card bg-white border border-gray-200 rounded-lg p-6 mb-8 shadow-sm hover:shadow-md transition-shadow duration-200` data-python-level={data.pythonLevel} >
<header class="mb-4">
<h3 class="text-2xl font-semibold mb-2">
{data.title}
Expand Down
2 changes: 1 addition & 1 deletion src/components/sections/hero/hero.astro
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ const action2 = "/sponsorship/sponsor/";
alt="EuroPython 2025 Conference"
layout='full-width'
formats={['avif', 'webp', 'jpeg']}
class="w-full max-w-5xl lg:max-w-full h-auto lg:h-full rounded-2xl shadow-xl"
class="max-w-5xl lg:max-w-full h-auto lg:h-full rounded-2xl shadow-xl"
loading="eager"
priority={true}
/>
Expand Down
6 changes: 6 additions & 0 deletions src/content/pages/sprints_info.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@ To submit a project for the sprints, head to
add your project as a markdown file in the folder `src/content/sprints`. Use the
file `_sprints_template.md` as the template for your project file.

💡 **Quick tip:** You can quickly edit and prepare your changes directly in the
browser using
[github web-based editor](https://github.dev/EuroPython/website/blob/ep2025/src/content/sprints/_sprints_template.md).

Once your file is added, submit a Pull Request — and you're done!

<!-- ## Location of the sprints venue
The Rajska Building (RB), [Žižkov Campus, VŠE](https://maps.app.goo.gl/azRTAczu8B5ma1XFA) (Prague University of Economics and Business) is the home of our sprints again this year.

Expand Down
2 changes: 1 addition & 1 deletion src/pages/api/media/sponsors/posts.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { getCollection, getEntry } from "astro:content";
import { getCollection } from "astro:content";
import type { APIRoute } from "astro";

export const GET: APIRoute = async () => {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/sprints.astro
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const sprints = await getCollection("sprints", ({ data }) => {

---

<Layout title=`${entry.data.title}` description=`${entry.data.description}` toc=true>
<Layout title=`${entry.data.title}` description=`${entry.data.subtitle}` toc=true>

<Markdown content={entry.body} />
<div class="flex flex-wrap gap-8 justify-center my-8">
Expand Down