diff options
Diffstat (limited to 'html')
| -rw-r--r-- | html/default.nix | 6 | ||||
| -rw-r--r-- | html/sections.nix | 1 | ||||
| -rw-r--r-- | html/software/default.nix | 28 |
3 files changed, 32 insertions, 3 deletions
diff --git a/html/default.nix b/html/default.nix index 2d8774c..b001d91 100644 --- a/html/default.nix +++ b/html/default.nix @@ -47,9 +47,9 @@ html.html { lang = "en"; } [ (section: li (href "#${section.title}" section.title))))) ]) (main { role = "main"; } (for sections (section: section.body))) - (footer "Webpage generated with the help of ${ - href "https://nixos.org/" "Nix" - } and ${ + (footer "Webpage ${ + href "#Software#aristoteWebpage" "generated" + } with the help of ${href "https://nixos.org/" "Nix"} and ${ href "https://classless.de/" "Classless CSS" }, and compressed with the help of ${ href "https://github.com/uncss/uncss" "uncss" diff --git a/html/sections.nix b/html/sections.nix index 2a571b6..4c4f0b0 100644 --- a/html/sections.nix +++ b/html/sections.nix @@ -15,4 +15,5 @@ in builtins.map makeSection [ ./experience # ./languages ./publications + ./software ] diff --git a/html/software/default.nix b/html/software/default.nix new file mode 100644 index 0000000..d0ed803 --- /dev/null +++ b/html/software/default.nix @@ -0,0 +1,28 @@ +{ html, data, lib, ... }: + +let + software = data.software; + format = softwarePiece: + with html; + with softwarePiece; + { + inherit id title abstract; + url = URL; + } // (let + authorsOther = lib.remove data.basics.name + (builtins.map (author: "${author.given} ${author.family}") author); + in lib.optionalAttrs (authorsOther != [ ]) { + authors = "With ${lib.concatStringsSep ", " authorsOther}"; + }); +in { + title = "Software"; + priority = 15; + body = with html; + dl (for (sort.byPath [ "title" ] software) (softwarePiece: + let formatted = format softwarePiece; + in with formatted; + lines [ + (dt { id = "Software#${id}"; } (href { target = "_blank"; } url title)) + (dd abstract) + ])); +} |
