tvl-depot/web/tvl/blog/default.nix
Vincent Ambo 4482bc2c82 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>
2021-11-05 14:24:53 +00:00

13 lines
200 B
Nix

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