🗽
Events in New York
Page 5 of 5 • 6 events per page
Route: /events/new-york/5
5
Current Page
6
Events Shown
30
Total Events
EST
Timezone
Workshop
#25
Business Workshop 25
1/10/2026 at 2:00 AM
New York Convention Center Hall B
68 attending
$44 Meetup
#26
Health Meetup 26
1/11/2026 at 3:00 PM
New York Convention Center Hall C
58 attending
$39 Seminar
#27
Education Seminar 27
1/12/2026 at 4:00 AM
New York Convention Center Hall D
246 attending
Free Concert
#28
Tech Concert 28
1/13/2026 at 5:00 PM
New York Convention Center Hall E
64 attending
$38 Festival
#29
Art Festival 29
1/14/2026 at 6:00 AM
New York Convention Center Hall F
183 attending
$41 Conference
#30
Music Conference 30
1/15/2026 at 7:00 PM
New York Convention Center Hall A
141 attending
Free Pagination Route Details
File path:
/pages/events/[city]/[page].astro
Static paths:
Pre-generated for 5 cities × 5 pages = 25 routes
Current params:
city="new-york", page="5"
Pagination Implementation
---
export function getStaticPaths() {
const cities = ['san-francisco', 'new-york', 'london'];
const maxPages = 5;
return cities.flatMap(city =>
Array.from({ length: maxPages }, (_, i) => ({
params: {
city: city,
page: (i + 1).toString()
}
}))
);
}
const { city, page } = Astro.params;
const currentPage = parseInt(page || '1');
const events = getEventsForPage(city, currentPage);
---
<h1>Events in {city} - Page {currentPage}</h1>