16 lines
434 B
Text
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}`} />
|