Skip to content
Draft
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
3 changes: 2 additions & 1 deletion src/components/Header.astro
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ const existingSlugs = new Set(existingPages.map((p) => p.id));

// Standalone .astro pages that always exist regardless of content collection
const alwaysExist = new Set([
"sessions", "speakers", "schedule", "posters", "talks", "tutorials",
"sessions", "speakers", "schedule", "schedule/talks", "schedule/tutorials",
"posters", "talks", "tutorials",
"sprints", "jobs", "sponsors", "community-partners", "media-partners",
]);

Expand Down
12 changes: 9 additions & 3 deletions src/data/nav.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,11 @@ export interface FooterColumn {

const L = {
// Programme
schedule: { label: "Schedule", url: "/schedule" },
talksSchedule: { label: "Talks Schedule", url: "/schedule/talks" },
tutorialsSchedule: {
label: "Tutorials Schedule",
url: "/schedule/tutorials",
},
talks: { label: "Talks", url: "/talks" },
tutorials: { label: "Tutorials", url: "/tutorials" },
posters: { label: "Posters", url: "/posters" },
Expand Down Expand Up @@ -123,7 +127,8 @@ export const NAV_MENUS: NavMenu[] = [
{
label: "Talks & Schedule",
items: [
L.schedule,
L.talksSchedule,
L.tutorialsSchedule,
L.talks,
L.tutorials,
L.posters,
Expand Down Expand Up @@ -227,7 +232,8 @@ export const FOOTER_COLUMNS: FooterColumn[] = [
{
title: "Programme",
items: [
L.schedule,
L.talksSchedule,
L.tutorialsSchedule,
L.talks,
L.tutorials,
L.posters,
Expand Down
Loading