You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
657 B
Plaintext
26 lines
657 B
Plaintext
---
|
|
import { getCollection } from 'astro:content'
|
|
|
|
import ArticleLayout from '../../layouts/ArticleLayout.astro'
|
|
|
|
export async function getStaticPaths() {
|
|
const guides = await getCollection('guides')
|
|
|
|
console.log(guides)
|
|
|
|
return guides.map(entry => ({
|
|
params: { id: entry.slug },
|
|
props: { entry },
|
|
}))
|
|
}
|
|
|
|
const { entry } = Astro.props
|
|
const { Content } = await entry.render()
|
|
---
|
|
|
|
<ArticleLayout {...entry.data} pageName={['guida', entry.data.id, entry.data.series && 'series']}>
|
|
<h1>{entry.data.title}</h1>
|
|
{entry.data.series && <div class="series">Serie: {entry.data.series}</div>}
|
|
<Content />
|
|
</ArticleLayout>
|