refactor(corp/website): Write index into a folder instead
This makes it possible to directly use the folder as an nginx root. Change-Id: I8cb5236f8d6d01658926330a01c9dfdfa7d60dcc Reviewed-on: https://cl.tvl.fyi/c/depot/+/3657 Reviewed-by: tazjin <mail@tazj.in> Tested-by: BuildkiteCI
This commit is contained in:
parent
8f2714d4cc
commit
9cad12aeb7
1 changed files with 17 additions and 13 deletions
|
@ -9,7 +9,7 @@ let
|
||||||
url = "https://tvl.su";
|
url = "https://tvl.su";
|
||||||
logo = "https://tvl.fyi/static/tvl-animated.svg";
|
logo = "https://tvl.fyi/static/tvl-animated.svg";
|
||||||
};
|
};
|
||||||
in depot.web.tvl.template {
|
index = depot.web.tvl.template {
|
||||||
title = "TVL (The Virus Lounge) - Software consulting";
|
title = "TVL (The Virus Lounge) - Software consulting";
|
||||||
content = builtins.readFile ./content.md;
|
content = builtins.readFile ./content.md;
|
||||||
useUrls = true; # load resources from tvl.fyi
|
useUrls = true; # load resources from tvl.fyi
|
||||||
|
@ -30,4 +30,8 @@ in depot.web.tvl.template {
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
'';
|
'';
|
||||||
}
|
};
|
||||||
|
in pkgs.runCommandNoCC "corp-website" {} ''
|
||||||
|
mkdir $out
|
||||||
|
cp ${index} $out/index.html
|
||||||
|
''
|
||||||
|
|
Loading…
Add table
Reference in a new issue