empty space

This commit is contained in:
array-in-a-matrix 2024-01-11 17:13:10 -05:00
parent 431684ee62
commit c604c54eda

View file

@ -4,7 +4,6 @@ import Header from '../components/Header.astro';
import { SITE_TITLE, SITE_DESCRIPTION } from '../consts';
import { getCollection } from 'astro:content';
import FormattedDate from '../components/FormattedDate.astro';
const posts = (await getCollection('blog')).sort(
(a, b) => a.data.pubDate.valueOf() - b.data.pubDate.valueOf()
);