about summary refs log tree commit diff
path: root/web/tvl/blog/default.nix
blob: cedfc6b41787536aa5cd0b2e78c91450b5a47d53 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ depot, ... }:

{
  config = {
    name = "TVL's blog";
    footer = depot.web.tvl.footer {};
    baseUrl = "https://tvl.fyi/blog";
  };

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