Skip to content
Closed
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
2 changes: 1 addition & 1 deletion src/components/header/header-actions.astro
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const IS_LIVE = false;
<kbd>Ctrl</kbd><kbd>K</kbd>
</kbd>
</button>
<Button url="/tickets" icon="ticket" class="w-full max-w-48 max-xl:hidden">Register Now!</Button>
<Button url="/tickets" icon="ticket" class="w-full max-w-48 max-xl:hidden">Tickets</Button>
{IS_LIVE && <Button url="/live">Live</Button>}
</>
: null
Expand Down
148 changes: 32 additions & 116 deletions src/data/links.json
Original file line number Diff line number Diff line change
@@ -1,154 +1,70 @@
{
"header": [
{
"name": "Programme",
"name": "Program",
"items": [
{
"name": "Programme & Events Overview",
"path": "/overview"
},
{
"name": "List of Sessions",
"path": "/sessions"
},
{
"name": "List of Speakers",
"path": "/speakers"
},
{
"name": "Tracks",
"path": "/tracks"
},
{
"name": "Selection Process",
"path": "/selection"
},
{
"name": "Community Voting",
"path": "/voting"
},
{
"name": "Speaker Mentorship",
"path": "/mentorship"
},
{
"name": "C API Summit",
"path": "/c-api-summit"
},
{
"name": "WebAssembly Summit",
"path": "/wasm-summit"
},
{
"name": "Rust Summit",
"path": "/rust-summit"
}
{ "name": "Overview", "path": "/overview" },
{ "name": "Sessions", "path": "/sessions" },
{ "name": "Speakers", "path": "/speakers" },
{ "name": "Tracks", "path": "/tracks" },
{ "name": "Talks Schedule", "path": "/schedule/talks" },
{ "name": "Tutorials Schedule", "path": "/schedule/tutorials" },
{ "name": "Selection Process", "path": "/selection" },
{ "name": "Community Voting", "path": "/voting" },
{ "name": "Speaker Mentorship", "path": "/mentorship" }
]
},
{
"name": "Events",
"items": [
{
"name": "Speakers' Dinner",
"path": "/speakers-dinner"
},
{
"name": "Beginners' Day",
"path": "/beginners-day"
}
{ "name": "C API Summit", "path": "/c-api-summit" },
{ "name": "WebAssembly Summit", "path": "/wasm-summit" },
{ "name": "Rust Summit", "path": "/rust-summit" },
{ "name": "Speakers' Dinner", "path": "/speakers-dinner" },
{ "name": "Beginners' Day", "path": "/beginners-day" }
]
},
{
"name": "Schedule",
"name": "Venue",
"items": [
{
"name": "Tutorials",
"path": "/schedule/tutorials"
},
{
"name": "Talks",
"path": "/schedule/talks"
}
]
},
{
"name": "Prague & Venue",
"items": [
{
"name": "Prague",
"path": "/prague"
},
{
"name": "Venue",
"path": "/venue"
}
{ "name": "Prague", "path": "/prague" },
{ "name": "Venue", "path": "/venue" }
]
},
{
"name": "Sponsorship",
"items": [
{
"name": "Sponsor Packages",
"path": "/sponsorship/sponsor"
},
{
"name": "Sponsor Information",
"path": "/sponsorship/information"
}
{ "name": "Sponsor Packages", "path": "/sponsorship/sponsor" },
{ "name": "Sponsor Information", "path": "/sponsorship/information" }
]
},
{
"name": "Registration",
"items": [
{
"name": "Tickets information",
"path": "/tickets"
}
]
},
{
"name": "Info & Support",
"items": [
{ "name": "Tickets", "path": "/tickets" },
{ "name": "Financial Aid", "path": "/finaid" },
{ "name": "Visa Support Letter", "path": "/visa" },
{ "name": "Childcare", "path": "/childcare" },
{ "name": "FAQ", "path": "/faq" },
{
"name": "Code of Conduct",
"path": "https://www.europython-society.org/coc/"
},
{
"name": "FAQ",
"path": "/faq"
},
{
"name": "Financial Aid",
"path": "/finaid"
},
{
"name": "Visa Support Letter",
"path": "/visa"
},
{
"name": "Childcare",
"path": "/childcare"
}
]
},
{
"name": "Jobs",
"path": "/jobs"
},
{
"name": "Community",
"path": "/community-partners"
}
],
"footer": [
{
"name": "2024 Photos",
"path": "https://ep2024.europython.eu/photos"
},
{
"name": "Contacts",
"path": "/contacts"
},
{
"name": "Terms",
"path": "/terms"
},
{ "name": "2024 Photos", "path": "https://ep2024.europython.eu/photos" },
{ "name": "Contacts", "path": "/contacts" },
{ "name": "Terms", "path": "/terms" },
{
"name": "Privacy Policy",
"path": "https://www.europython-society.org/privacy/"
Expand Down