File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import Layout from '#src/astro/layouts/Layout.astro';
88import Breadcrumb from ' #src/astro/components/Breadcrumb.astro' ;
99import SnippetContent from ' #src/astro/components/SnippetContent.astro' ;
1010import TableOfContents from ' #src/astro/components/TableOfContents.astro' ;
11+ import Pagination from ' #src/astro/components/Pagination.astro' ;
1112import PreviewList from ' #src/astro/components/PreviewList.astro' ;
1213
1314export async function getStaticPaths() {
@@ -27,6 +28,7 @@ const {
2728 snippet,
2829 recommendations,
2930 breadcrumbs,
31+ journey,
3032 pageDescription,
3133 structuredData,
3234} = Astro .props ;
@@ -44,6 +46,7 @@ const {
4446 <main slot =' main-content' >
4547 <Breadcrumb breadcrumbs ={ breadcrumbs } />
4648 <SnippetContent snippet ={ snippet } />
49+ { journey && <Pagination journey = { journey } />}
4750 <PreviewList contentItems ={ recommendations } >
4851 <h2 slot =' title' >More like this</h2 >
4952 </PreviewList >
You can’t perform that action at this time.
0 commit comments