--- 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; ---
{ posts.map((b, index) => index % 2 === 0 ? ( ) : ( ) ) }