--- // Cspell:words astro frontmatter import Pullquote from '../components/Pullquote.astro'; import Image from '../components/Image.astro'; import PageTitle from '../components/PageTitle.astro'; import GridLayout from './GridLayout.astro'; export interface Props { class?: string; frontmatter?: any; grid?: 'wide' | 'narrow'; } const { frontmatter, class: className, grid = 'narrow' } = Astro.props; const gridVariant = frontmatter.grid || grid; --- {frontmatter.title} { frontmatter.cover && (
{frontmatter.title}
) } { frontmatter.intro && (
) }