feat(web/tvl/blog): Add scaffolding for first blog post

No content yet, but I need this in place to chop up the other changes
nicely.

Change-Id: I4302e14ab513d6d4dd23e9e8ab5493223b9a80b4
Reviewed-on: https://cl.tvl.fyi/c/depot/+/3774
Tested-by: BuildkiteCI
Reviewed-by: grfn <grfn@gws.fyi>
This commit is contained in:
Vincent Ambo 2021-11-05 13:52:51 +01:00 committed by tazjin
parent 4baf633622
commit 4482bc2c82
2 changed files with 14 additions and 0 deletions

13
web/tvl/blog/default.nix Normal file
View file

@ -0,0 +1,13 @@
{ depot, ... }:
{
posts = [
{
key = "kicking-off-tvix";
title = "Kicking off Tvix";
date = 1636038556;
content = ./kicking-off-tvix.md;
draft = true;
}
];
}

View file

@ -0,0 +1 @@
To be written.