tvl-depot/users/tazjin/homepage/feed.nix
Vincent Ambo d8d0b17823 refactor(tazjin/homepage): long overdue entry list rework
The entry list is now much more condensed. It's maybe a little *too*
condensed, but already closer to what I'm looking for.

Note: A new "note" post type has snuck in and can now be used for
random musings or comments on previous entries. Notes do not show up
in the Atom feed.

Change-Id: I920c0c7650937474b8a5f30cba78416554d523ce
Reviewed-on: https://cl.tvl.fyi/c/depot/+/8806
Reviewed-by: tazjin <tazjin@tvl.su>
Autosubmit: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
2023-06-15 23:26:57 +00:00

43 lines
1.1 KiB
Nix

# Creates the Atom feed for my homepage.
{ depot, lib, pkgs, entry, pageEntries, ... }:
with depot.nix.yants;
let
inherit (builtins) filter map readFile;
inherit (lib) max singleton;
inherit (pkgs) writeText;
inherit (depot.web) blog atom-feed;
pageEntryToEntry = defun [ entry atom-feed.entry ] (e: {
id = "tazjin:${e.class}:${toString e.date}";
updated = e.date;
published = e.date;
title = e.title;
summary = e.description;
links = singleton {
rel = "alternate";
href = e.url;
};
});
allEntries = (with depot.users.tazjin.blog; map (blog.toFeedEntry config) posts)
++ (map pageEntryToEntry (filter (e: e.class != "note") pageEntries));
feed = {
id = "https://tazj.in/";
title = "tazjin's interblag";
subtitle = "my posts, projects and other interesting things";
rights = "© 2020 tazjin";
authors = [ "tazjin" ];
links = singleton {
rel = "self";
href = "https://tazjin/feed.atom";
};
entries = allEntries;
};
in
writeText "feed.atom" (atom-feed.renderFeed feed)