File tree Expand file tree Collapse file tree 5 files changed +12
-12
lines changed Expand file tree Collapse file tree 5 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import childcareArea from "./images/childcare-area.jpg";
8
8
import childcareBalls from " ./images/childcare-balls.jpg" ;
9
9
10
10
11
- ## Childcare at EuroPython 2025
11
+ # Childcare at EuroPython 2025
12
12
13
13
We’re committed to making EuroPython as inclusive and accessible as possible — and that includes supporting parents attending the conference.
14
14
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import { Image } from "astro:assets";
8
8
import venueImage from " ./images/prague.jpg" ;
9
9
import pccEntrance from " images/entrance5-pcc5.jpg" ;
10
10
11
- ## Conference Venue - Prague Congress Centre
11
+ # Conference Venue - Prague Congress Centre
12
12
13
13
[ The Prague Congress Centre] ( https://www.praguecc.cz/en/homepage ) will host
14
14
EuroPython 2025 from ** July 14th to July 20th** . It’s a renowned venue, having
Original file line number Diff line number Diff line change 2
2
import { type CollectionEntry , getEntry , getCollection } from " astro:content" ;
3
3
4
4
import Layout from " @layouts/SectionLayout.astro" ;
5
-
5
+ import Headline from " @ui/Headline.astro "
6
6
import SponsorCard from " @components/SponsorCard.astro" ;
7
7
import JobCard from " @components/JobCard.astro" ;
8
8
import TwoCols from " @components/TwoCols.astro" ;
@@ -52,6 +52,8 @@ sponsors.forEach((sponsor) => {
52
52
title =" EuroPython 2025 | July 14th-20th 2025 | Prague, Czech Republic & Remote"
53
53
description =" EuroPython is the largest Python conference in Europe. We are looking forward to seeing you in Prague, Czech Republic & Remote from July 14th-20th 2025."
54
54
>
55
+
56
+ <Headline id =" jobs" as =" h1" title =" Job board" />
55
57
{
56
58
sponsors .map ((sponsor ) => {
57
59
if (! (sponsor .data .jobs && sponsor .data .jobs .length > 0 )) return ;
Original file line number Diff line number Diff line change 2
2
import { getCollection } from " astro:content" ;
3
3
import Layout from " ../layouts/Layout.astro" ;
4
4
import Prose from " ../components/prose/prose.astro" ;
5
+ import Headline from " @ui/Headline.astro"
5
6
import Filter from " ../components/sessions/filter.astro" ;
6
7
import ListSessions from " ../components/sessions/list-sessions.astro" ;
7
8
import Section from " @ui/Section.astro" ;
@@ -26,18 +27,16 @@ const description = "A list of all the sessions at the conference";
26
27
27
28
<Layout title ={ title } description ={ description } >
28
29
<Section >
30
+ <Headline id =" sessions" as =" h1" title =" List of Sessions" />
29
31
<Prose full >
30
- <h1 >Sessions</h1 >
31
32
<p >Here you can find a list of all the sessions at the conference.</p >
32
33
<p >You can filter the sessions by track, type, and level.</p >
33
- <h2 >Filters</h2 >
34
34
</Prose >
35
+ <Headline id =" filters" title =" Filters" />
35
36
36
37
<Filter allTracks ={ allTracks } allTypes ={ allTypes } allLevels ={ allLevels } />
37
38
38
- <Prose full >
39
- <h2 >List of Sessions</h2 >
40
- </Prose >
39
+ <Headline id =" results" as =" h2" title =" Search results" />
41
40
42
41
<ListSessions sessions ={ sessions } />
43
42
</Section >
Original file line number Diff line number Diff line change 1
1
---
2
2
import { getCollection , type CollectionEntry } from " astro:content" ;
3
3
import Layout from " @layouts/Layout.astro" ;
4
- import Prose from " @components/prose/prose .astro" ;
4
+ import Headline from " @ui/Headline .astro"
5
5
import { Image } from " astro:assets" ;
6
6
import Section from " @ui/Section.astro" ;
7
7
@@ -65,9 +65,8 @@ const description = "Our conference speakers organized alphabetically";
65
65
66
66
<Layout title ={ title } description ={ description } >
67
67
<Section >
68
- <Prose full >
69
- <h1 >Speakers</h1 >
70
- </Prose >
68
+
69
+ <Headline id =" speakers" as =" h1" title =" List of Speakers" />
71
70
72
71
{
73
72
groupKeys .map ((key , _index ) => (
You can’t perform that action at this time.
0 commit comments