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:
parent
4baf633622
commit
4482bc2c82
2 changed files with 14 additions and 0 deletions
13
web/tvl/blog/default.nix
Normal file
13
web/tvl/blog/default.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{ depot, ... }:
|
||||
|
||||
{
|
||||
posts = [
|
||||
{
|
||||
key = "kicking-off-tvix";
|
||||
title = "Kicking off Tvix";
|
||||
date = 1636038556;
|
||||
content = ./kicking-off-tvix.md;
|
||||
draft = true;
|
||||
}
|
||||
];
|
||||
}
|
1
web/tvl/blog/kicking-off-tvix.md
Normal file
1
web/tvl/blog/kicking-off-tvix.md
Normal file
|
@ -0,0 +1 @@
|
|||
To be written.
|
Loading…
Reference in a new issue