diff --git a/src/pages/articles/index.astro b/src/pages/articles/index.astro index 634fdb9..e0965ef 100644 --- a/src/pages/articles/index.astro +++ b/src/pages/articles/index.astro @@ -11,105 +11,291 @@ export const prerender = true; const posts = (await getCollection('blog')).sort( (a, b) => b.data.pubDate.valueOf() - a.data.pubDate.valueOf(), ); + +// will work this out later +const book_colours = [] + +const max_shelf_width = 980; + --- -
-