--- import { YouTube } from 'astro-embed'; import MainLayout from "../../layouts/MainLayout.astro"; import Header from "../../components/Header.astro"; import CarouselSection from "../../components/section/CarouselSection.astro"; import { Image } from "@unpic/astro"; import { getCollection, render } from "astro:content"; import TitleSection from "../../components/section/TitleSection.astro"; import FooterSection from '../../components/section/FooterSection.astro'; export const prerender = true; // 1. Generate a new path for every collection entry export async function getStaticPaths() { const posts = await getCollection("news"); return posts.map((post) => ({ params: { id: post.id }, props: { post }, })); } const { post } = Astro.props; const { Content } = await render(post); console.log("astro site", Astro.site); const baseUrl = Astro.site ?? "https://mk8nrc8p-4321.brs.devtunnels.ms"; const pageUrl = new URL(`/es/news/${post.id}`, baseUrl).toString(); --- {post.data.title} {post.data.gallery && post.data.gallery.length > 0 && post.data.gallery[0].image && ( <> )}
{post.data.gallery && }
{ post.data.youtube && ( )} {post.data.gallery && ( post.data.gallery.map(galleryImage => ( {galleryImage.text} )) )}