--- import type { Post } from '@lib/directusTypes'; import LargeBlogLeftCard from '@components/cards/LargeBlogLeftCard.astro'; import LargeBlogRightCard from '@components/cards/LargeBlogRightCard.astro'; interface Props { posts: Post[]; } const { posts } = Astro.props; ---
{posts.map((post, index) => index % 2 === 0 ? ( ) : ( ))}