🗽
Events in New York
Page 3 of 5 • 6 events per page
Route: /events/new-york/3
3
Current Page
6
Events Shown
30
Total Events
EST
Timezone
Workshop
#13
Education Workshop 13
4/4/2026 at 2:00 AM
New York Convention Center Hall B
102 attending
$20 Meetup
#14
Tech Meetup 14
4/5/2026 at 3:00 PM
New York Convention Center Hall C
233 attending
$31 Seminar
#15
Art Seminar 15
4/6/2026 at 4:00 AM
New York Convention Center Hall D
184 attending
Free Concert
#16
Music Concert 16
4/7/2026 at 5:00 PM
New York Convention Center Hall E
60 attending
$113 Festival
#17
Food Festival 17
4/8/2026 at 6:00 AM
New York Convention Center Hall F
193 attending
$46 Conference
#18
Business Conference 18
4/9/2026 at 7:00 PM
New York Convention Center Hall A
184 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="3"
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>