Skip to content

Commit 89222a3

Browse files
authored
Merge branch 'ep2025' into ep2025-schedule
2 parents 0235446 + 2d33f55 commit 89222a3

File tree

20 files changed

+203
-11
lines changed

20 files changed

+203
-11
lines changed

.env.preview

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
EP_SESSIONS_API="https://static.europython.eu/programme/ep2025/releases/current/sessions.json"
22
EP_SPEAKERS_API="https://static.europython.eu/programme/ep2025/releases/current/speakers.json"
3-
EP_SCHEDULE_API="https://static.europython.eu/programme/ep2025/releases/current/schedule.json"
3+
EP_SCHEDULE_API="https://static.europython.eu/programme/ep2025/releases/current/schedule.json"

.github/workflows/build-deploy.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
push:
66
branches:
77
- ep2025
8+
schedule:
9+
- cron: "0 * * * *"
810

911
jobs:
1012
deploy:

.github/workflows/preview.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55

66
jobs:
77
preview:
8+
if: github.event.pull_request.head.repo.fork == false
89
name: Run preview
910
runs-on: ubuntu-latest
1011
env:

public/EuroPython2025_logo.png

7.54 KB
Loading

public/favicon.ico

-25.3 KB
Binary file not shown.

public/hr.png

419 Bytes
Loading

public/logo.png

19.6 KB
Loading

public/logo.svg

Lines changed: 1 addition & 0 deletions
Loading

src/components/BaseHead.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const { title, description, image = "/social-card.png" } = Astro.props;
1313
<!-- Global Metadata -->
1414
<meta charset="utf-8" />
1515
<meta name="viewport" content="width=device-width,initial-scale=1" />
16-
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
16+
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
1717
<meta name="generator" content="Astro" />
1818
<link rel="sitemap" href="/sitemap-index.xml" />
1919

src/components/header/header-logo.astro

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,5 @@ interface Props {
77
---
88

99
<a href="/">
10-
<Logo className="w-11 h-auto mr-4 block md:hidden" />
11-
<Logo className="h-auto hidden md:block w-full pr-3 lg:pr-8" />
10+
<img class="md:block block w-[44px] h-[44px] md:w-[85px] md:h-[85px] " src="/EuroPython2025_logo.png" />
1211
</a>

0 commit comments

Comments
 (0)