--- const pathname = Astro.url.pathname; const links = [ { href: "/photos", label: "Stream", active: pathname === "/photos" || pathname === "/photos/", }, { href: "/photos/collections", label: "Collections", active: pathname.startsWith("/photos/collections"), }, { href: "/photos/tags", label: "Tags", active: pathname.startsWith("/photos/tags"), }, { href: "/photos/map", label: "Map", active: pathname.startsWith("/photos/map"), }, { href: "/photos/stats", label: "Stats", active: pathname.startsWith("/photos/stats"), }, ]; ---
← Back home

Photos