Skip to content

Commit c83d87d

Browse files
committed
Add preview schedule endpoint.
1 parent 3912699 commit c83d87d

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

.env.preview

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +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://gist.githubusercontent.com/nikoshell/55ab27b228a31130134f689429e93bf5/raw/a1542efb298366645ad44ae9087772671646d51b/schedule.json"

src/layouts/ScheduleLayout.astro

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,14 @@ const { title, description } = Astro.props;
1515
<html lang="en">
1616
<head>
1717
<BaseHead title={title} description={description} />
18+
19+
<link rel="preconnect" href="https://fonts.googleapis.com">
20+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
21+
22+
<link href="https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Sofia+Sans+Condensed:ital,wght@0,1..1000;1,1..1000&display=swap" rel="stylesheet">
23+
24+
<link href="https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Sofia+Sans+Condensed:ital,wght@0,1..1000;1,1..1000&display=swap" rel="stylesheet">
25+
1826
</head>
1927

2028
<div class="flex flex-col items-stretch min-h-screen">

0 commit comments

Comments
 (0)