|
|
|
@ -16,7 +16,11 @@ const { entry } = Astro.props
|
|
|
|
const { Content } = await entry.render()
|
|
|
|
const { Content } = await entry.render()
|
|
|
|
---
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
|
|
<ArticleLayout {...entry.data} pageTags={['guida', entry.data.id, entry.data.series && 'series']}>
|
|
|
|
<ArticleLayout
|
|
|
|
|
|
|
|
{...entry.data}
|
|
|
|
|
|
|
|
title={entry.data.title + ' | Guide | PHC'}
|
|
|
|
|
|
|
|
pageTags={['guida', entry.data.id, entry.data.series && 'series']}
|
|
|
|
|
|
|
|
>
|
|
|
|
<h1>{entry.data.title}</h1>
|
|
|
|
<h1>{entry.data.title}</h1>
|
|
|
|
|
|
|
|
|
|
|
|
{entry.data.series && <div class="series">Serie: {entry.data.series}</div>}
|
|
|
|
{entry.data.series && <div class="series">Serie: {entry.data.series}</div>}
|
|
|
|
|