--- import type { Post } from '@lib/directusTypes'; import { getDirectusImageURL } from '@lib/directusFunctions'; import BlogLeftSection from '@components/blog/BlogLeftSection.astro'; import BlogRightSection from '@components/blog/BlogRightSection.astro'; interface Props { posts: Post[]; } const { posts } = Astro.props; const blogPosts = posts.slice(0, 5); ---
{ blogPosts.map((b, index) => index % 2 === 0 ? ( ) : ( ) ) }