---
///
import Layout from '../../layouts/Layout.astro';
import FormattedDate from '../../components/base/FormattedDate.astro'
import { getCollection } from 'astro:content';
const posts = (await getCollection('blog')).sort(
(a, b) => a.data.pubDate.valueOf() - b.data.pubDate.valueOf()
);
---