--- import { getCollection } from 'astro:content'; import BaseLayout from '../../layouts/BaseLayout.astro'; import { formatDate, guidesByReview } from '../../lib/content'; const entries = guidesByReview(await getCollection('guides', ({ data }) => !data.draft)); ---

Documentation written by journalists

Field guides

The page a smart newcomer needs after reading three contradictory accounts: what the system is, who must trust whom, what it knows, and what happens when access is lost.

{entries.length > 0 ? entries.map((entry, index) => (
0{index + 1}

{entry.data.title}

{entry.data.description}

Last reviewed
{formatDate(entry.data.reviewed)}
)) :

The first guides are in editorial review. Staleness will be visible once they publish.

}