diff --git a/packages/template/src/layouts/post_layout.astro b/packages/template/src/layouts/post_layout.astro index 8b77d16..296b457 100644 --- a/packages/template/src/layouts/post_layout.astro +++ b/packages/template/src/layouts/post_layout.astro @@ -4,7 +4,7 @@ import FormattedDate from '../components/FormattedDate.astro' import RootLayout from './root_layout.astro' type Props = CollectionEntry<'post'>['data'] -const { title, description, update } = Astro.props +const { title, description, update, pagination } = Astro.props --- @@ -17,8 +17,43 @@ const { title, description, update } = Astro.props -