media: use the media section for videos

This commit is contained in:
Timothy DeHerrera
2022-12-09 19:28:58 -07:00
parent b87ce1758f
commit 923fb1590c
4 changed files with 42 additions and 14 deletions

View File

@@ -13,10 +13,10 @@ export const NAV_ITEMS: NavItems = {
path: '/tags', path: '/tags',
title: 'tags' title: 'tags'
}, },
// media: { media: {
// path: '/media', path: '/media',
// title: 'media' title: 'media'
// }, },
about: { about: {
path: '/about', path: '/about',
title: 'about' title: 'about'

View File

@@ -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"
}
] ]

View File

@@ -11,15 +11,10 @@ authorGithub: nrdxp
date: 2022-10-31 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) For those who would rather watch than read, a colleague of mine has whipped up a great video series
has whipped up a great video series exploring Standard in depth, so I thought I'd leave them here: exploring Standard in depth, so drop by the [media secition](../media) for links.
* [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)
## Two years later... ## Two years later...

View File

@@ -3,8 +3,8 @@ import DefaultPageLayout from '$/layouts/default.astro'
import MediaPreviewList from '$/components/MediaPreviewList.astro' import MediaPreviewList from '$/components/MediaPreviewList.astro'
import posts from '$/data/astro-media.json' import posts from '$/data/astro-media.json'
let title = 'Under Construction'; let title = 'Media from the blog.';
let description = 'Nothing to see here folks' let description = 'A collection of material used or referenced in the posts.'
const allPosts = await posts const allPosts = await posts
const sortedPosts = allPosts.sort((a, b) => new Date(b.date) - new Date(a.date)) const sortedPosts = allPosts.sort((a, b) => new Date(b.date) - new Date(a.date))