feat(tazjin/homepage): Add non-blog-post entries to Atom feed
Adds the same entries that are also listed on the homepage itself to the feed. Change-Id: I6586dcb899d40536777ac5a5dfcac4bb1cc8cee5 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1715 Tested-by: BuildkiteCI Reviewed-by: kanepyork <rikingcoding@gmail.com>
This commit is contained in:
parent
1d699fdc5c
commit
574d62c4b9
2 changed files with 22 additions and 5 deletions
|
|
@ -64,8 +64,9 @@ let
|
|||
++ [ (builtins.readFile ./footer.html) ]
|
||||
));
|
||||
|
||||
homepage = index ((map postToEntry users.tazjin.blog.posts) ++ (import ./entries.nix));
|
||||
atomFeed = import ./feed.nix args;
|
||||
pageEntries = import ./entries.nix;
|
||||
homepage = index ((map postToEntry users.tazjin.blog.posts) ++ pageEntries);
|
||||
atomFeed = import ./feed.nix (args // { inherit entry pageEntries; });
|
||||
in runCommandNoCC "website" {} ''
|
||||
mkdir $out
|
||||
cp ${homepage} $out/index.html
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue