familyfedie-website/src/pages/archive/sunday-services/[year]/index.astro
Loyyd f85aca7d58
Some checks are pending
/ deploy (push) Waiting to run
Remove .html from internal links
2026-07-02 19:44:40 +02:00

16 lines
434 B
Text

---
import LegacyRedirectPage from "../../../../components/LegacyRedirectPage.astro";
export function getStaticPaths() {
const years = ["2013", "2014", "2015", "2016", "2017", "2018"];
return years.map((year) => ({
params: { year },
props: { year },
}));
}
const { year } = Astro.props;
---
<LegacyRedirectPage title={`${year} Sunday Services Archive - FFWPU Ireland`} target={`/archive-sunday-services-${year}`} />