diff --git a/src/config.ts b/src/config.ts index 2ac2ab9..5146db7 100644 --- a/src/config.ts +++ b/src/config.ts @@ -13,10 +13,10 @@ export const NAV_ITEMS: NavItems = { path: '/tags', title: 'tags' }, - // media: { - // path: '/media', - // title: 'media' - // }, + media: { + path: '/media', + title: 'media' + }, about: { path: '/about', title: 'about' diff --git a/src/data/astro-media.json b/src/data/astro-media.json index 0d4f101..9eaf741 100644 --- a/src/data/astro-media.json +++ b/src/data/astro-media.json @@ -1,2 +1,35 @@ [ + + { + "title": "Standard — Introduction", + "description": "A first principles introduction to Standard.", + "url": "https://www.loom.com/share/cf9d5d1a10514d65bf6b8287f7ddc7d6", + "host": "Joshua Gilman", + "participants": [], + "date": "2022-11-22" + }, + { + "title": "Standard — Cell Blocks: Deep Dive", + "description": "Going in depth on Standard's key abstraction.", + "url": "https://www.loom.com/share/04fa1d578fd044059b02c9c052d87b77", + "host": "Joshua Gilman", + "participants": [], + "date": "2022-11-22" + }, + { + "title": "Standard — Operables & OCI", + "description": "An entrypoint into building reproducible containers with Standard; batteries included.", + "url": "https://www.loom.com/share/27d91aa1eac24bcaaaed18ea6d6d03ca", + "host": "Joshua Gilman", + "participants": [], + "date": "2022-11-22" + }, + { + "title": "Standard — Nixago", + "description": "Generating configuration files dynamically at shell load time & more.", + "url": "https://www.loom.com/share/5c1badd77ab641d3b8e256ddbba69042", + "host": "Joshua Gilman", + "participants": [], + "date": "2022-11-22" + } ] diff --git a/src/pages/blog/std.md b/src/pages/blog/std.md index 822ef27..5bf28b7 100644 --- a/src/pages/blog/std.md +++ b/src/pages/blog/std.md @@ -11,15 +11,10 @@ authorGithub: nrdxp date: 2022-10-31 --- -## A Video is Worth 1000 Blogs +## Update: A Video is Worth 1000 Blogs -For those who would rather watch than read, my awesome colleague [Josh](https://github.com/jmgilman) -has whipped up a great video series exploring Standard in depth, so I thought I'd leave them here: - -* [Introduction](https://www.loom.com/share/cf9d5d1a10514d65bf6b8287f7ddc7d6) -* [Cell Blocks Deep Dive](https://www.loom.com/share/04fa1d578fd044059b02c9c052d87b77) -* [Operables & OCI](https://www.loom.com/share/27d91aa1eac24bcaaaed18ea6d6d03ca) -* [Nixago](https://www.loom.com/share/5c1badd77ab641d3b8e256ddbba69042) +For those who would rather watch than read, a colleague of mine has whipped up a great video series +exploring Standard in depth, so drop by the [media secition](../media) for links. ## Two years later... diff --git a/src/pages/media.astro b/src/pages/media.astro index 2757c00..f686f4f 100644 --- a/src/pages/media.astro +++ b/src/pages/media.astro @@ -3,8 +3,8 @@ import DefaultPageLayout from '$/layouts/default.astro' import MediaPreviewList from '$/components/MediaPreviewList.astro' import posts from '$/data/astro-media.json' -let title = 'Under Construction'; -let description = 'Nothing to see here folks' +let title = 'Media from the blog.'; +let description = 'A collection of material used or referenced in the posts.' const allPosts = await posts const sortedPosts = allPosts.sort((a, b) => new Date(b.date) - new Date(a.date))