From 9122310da3183f69050e63f91d869cca9ba7f404 Mon Sep 17 00:00:00 2001 From: sirlilpanda Date: Sun, 29 Mar 2026 20:09:46 +1300 Subject: [PATCH] articles now show as books --- src/pages/articles/index.astro | 354 +++++++++++++++++++++++++-------- 1 file changed, 270 insertions(+), 84 deletions(-) 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; + --- -
-