diff --git a/src/content/blog/block-1-debriefing/index.md b/src/content/blog/block-1-debriefing/index.md index 4cca970..98b0957 100644 --- a/src/content/blog/block-1-debriefing/index.md +++ b/src/content/blog/block-1-debriefing/index.md @@ -4,7 +4,7 @@ author: "Matt Bannert" toc: false draft: false snippet: "Stack -- a developer's toolkit. We discussed how much DevOps a researcher and analyst really needs. Not all rabbit holes are for everyone. Git version control carpentry may be the one skill you must take a way from a semester of hacking for science... Read more!" -cover: "./dr_egghead_panics.jpg" +cover: ./dr_egghead_panics.jpg coverAlt: "Dr. Egghead panics - too many tools and rabbit holes for him." publishDate: "2025-09-26" category: "Recap" diff --git a/src/pages/blog.astro b/src/pages/blog.astro index 629ad01..834a007 100644 --- a/src/pages/blog.astro +++ b/src/pages/blog.astro @@ -14,6 +14,8 @@ const publishedBlogEntries = await getCollection("blog", ({ data }) => { publishedBlogEntries.sort(function (a, b) { return b.data.publishDate.valueOf() - a.data.publishDate.valueOf(); }); + +console.log("Cover data:", publishedBlogEntries[0]?.data.cover); --- @@ -33,7 +35,7 @@ publishedBlogEntries.sort(function (a, b) {