Skip to content

Commit 75da9d1

Browse files
authored
Merge pull request #75 from pyvec/pycon-2027
PyCon CZ 26 -> 27
2 parents 6874f5d + ed0f19b commit 75da9d1

27 files changed

Lines changed: 41 additions & 41 deletions

_upcoming/cz.pycon.org/astro.config.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import purgecss from "astro-purgecss";
55

66
// https://astro.build/config
77
export default defineConfig({
8-
site: "https://cz.pycon.org/2026/",
9-
base: "/2026/",
10-
outDir: "../public/2026/",
8+
site: "https://cz.pycon.org/2027/",
9+
base: "/2027/",
10+
outDir: "../public/2027/",
1111
integrations: [purgecss()],
1212
});

_upcoming/cz.pycon.org/public/favicon/site.webmanifest

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
"short_name": "PyCon CZ",
44
"icons": [
55
{
6-
"src": "/2026/favicon/android-chrome-192x192.png",
6+
"src": "/2027/favicon/android-chrome-192x192.png",
77
"sizes": "192x192",
88
"type": "image/png"
99
},
1010
{
11-
"src": "/2026/favicon/android-chrome-512x512.png",
11+
"src": "/2027/favicon/android-chrome-512x512.png",
1212
"sizes": "512x512",
1313
"type": "image/png"
1414
}
File renamed without changes.
-4.43 KB
Loading

_upcoming/cz.pycon.org/src/components/Header.astro

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
import logoImage from "../assets/logo-pyconcz-26.svg";
2+
import logoImage from "../assets/logo-pyconcz-27.svg";
33
import Navigation from "./Navigation.astro";
44
---
55

@@ -9,12 +9,12 @@ import Navigation from "./Navigation.astro";
99
<div class="pc-header">
1010
<div class="text-center">
1111
<a href="/">
12-
<img src={logoImage.src} alt="PyCon CZ 26" class="pc-header__logo" width="500" height="250" />
12+
<img src={logoImage.src} alt="PyCon CZ 27" class="pc-header__logo" width="500" height="250" />
1313
</a>
1414
</div>
1515
<h1 class="pc-header__title text-center text-md-start">
16-
PyCon&nbsp;CZ&nbsp;26<br />
17-
September&nbsp;2026<br />
16+
PyCon&nbsp;CZ&nbsp;27<br />
17+
Summer&nbsp;2027<br />
1818
Pilsen
1919
</h1>
2020
</div>

_upcoming/cz.pycon.org/src/layouts/Layout.astro

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,20 @@ const ogImageUrl = new URL(ogImage.src, Astro.url);
2121
<meta charset="utf-8" />
2222
<meta name="viewport" content="width=device-width, initial-scale=1" />
2323

24-
<title>{title ? `${title} - ` : ""} PyCon CZ 26, September 2026, Pilsen</title>
24+
<title>{title ? `${title} - ` : ""} PyCon CZ 27, Summer 2027, Pilsen</title>
2525

2626
<link rel="canonical" href={canonicalUrl} />
2727
<meta property="og:type" content="website" />
28-
<meta property="og:site_name" content="PyCon CZ 26" />
28+
<meta property="og:site_name" content="PyCon CZ 27" />
2929
<meta name="twitter:site" content="@pyconcz" />
3030
<meta property="og:url" content={canonicalUrl} />
31-
<meta property="og:title" content="PyCon CZ 26, September 2026, Pilsen" />
31+
<meta property="og:title" content="PyCon CZ 27, Summer 2027, Pilsen" />
3232
<meta property="og:description" content="Join us for 3 days full of Python and fun!!!" />
3333
<meta property="og:image" content={ogImageUrl} />
3434
<meta property="og:image:width" content="2400" />
3535
<meta property="og:image:height" content="1260" />
3636
<meta name="twitter:card" content="summary_large_image" />
37-
<meta name="twitter:image:alt" content="PyCon CZ 26" />
37+
<meta name="twitter:image:alt" content="PyCon CZ 27" />
3838

3939
<link rel="apple-touch-icon" sizes="180x180" href={`${baseUrl}favicon/apple-touch-icon.png`} />
4040
<link rel="icon" type="image/png" sizes="32x32" href={`${baseUrl}favicon/favicon-32x32.png`} />

_upcoming/cz.pycon.org/src/pages/sponsorship.astro

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ const baseUrl = import.meta.env.BASE_URL;
3737
<div class="col-md">
3838
<h2>Contacts</h2>
3939
<p>
40-
<b>Mr. Tomáš Zítka</b>, Partnerships Lead – PyCon CZ 26 <br /><a href="mailto:sponsorship@pycon.cz"
40+
<b>Mr. Tomáš Zítka</b>, Partnerships Lead – PyCon CZ 27 <br /><a href="mailto:sponsorship@pycon.cz"
4141
>sponsorship@pycon.cz</a
4242
>
4343
<br /><a href="tel:+420603974857">+420&nbsp;603&nbsp;974&nbsp;857</a>
4444
</p>
4545
<p>
46-
<b>Mr. Jakub Červinka</b>, Partnerships – PyCon CZ 26 <br /><a href="mailto:sponsorship@pycon.cz"
46+
<b>Mr. Jakub Červinka</b>, Partnerships – PyCon CZ 27 <br /><a href="mailto:sponsorship@pycon.cz"
4747
>sponsorship@pycon.cz</a
4848
>
4949
<br /><a href="tel:+420605859988">+420&nbsp;605&nbsp;859&nbsp;988</a>
@@ -60,7 +60,7 @@ const baseUrl = import.meta.env.BASE_URL;
6060

6161
<h2>Event summary</h2>
6262
<ul class="pc-text-columns">
63-
<li>September 2026 in Pilsen</li>
63+
<li>Summer 2027 in Pilsen</li>
6464
<li><strong>400 attendees:</strong> professionals, students and hobbyist Pythonistas</li>
6565
<li>
6666
2 conference days with 2 tracks primarily in English covering topics like data processing, AI/ML, web-dev,
@@ -252,13 +252,13 @@ const baseUrl = import.meta.env.BASE_URL;
252252

253253
<h2>Contacts</h2>
254254
<p>
255-
<b>Mr. Tomáš Zítka</b>, Partnerships Lead – PyCon CZ 26 <br /><a href="mailto:sponsorship@pycon.cz"
255+
<b>Mr. Tomáš Zítka</b>, Partnerships Lead – PyCon CZ 27 <br /><a href="mailto:sponsorship@pycon.cz"
256256
>sponsorship@pycon.cz</a
257257
>
258258
<br /><a href="tel:+420603974857">+420&nbsp;603&nbsp;974&nbsp;857</a>
259259
</p>
260260
<p>
261-
<b>Mr. Jakub Červinka</b>, Partnerships – PyCon CZ 26 <br /><a href="mailto:sponsorship@pycon.cz"
261+
<b>Mr. Jakub Červinka</b>, Partnerships – PyCon CZ 27 <br /><a href="mailto:sponsorship@pycon.cz"
262262
>sponsorship@pycon.cz</a
263263
>
264264
<br /><a href="tel:+420605859988">+420&nbsp;605&nbsp;859&nbsp;988</a>
-75.7 KB
Binary file not shown.
File renamed without changes.

_upcoming/public/2026/_astro/logo-pyconcz-26.DG-PfM2K.svg renamed to _upcoming/public/2027/_astro/logo-pyconcz-27.DG-PfM2K.svg

File renamed without changes.

0 commit comments

Comments
 (0)