diff options
Diffstat (limited to 'html/sections.nix')
| -rw-r--r-- | html/sections.nix | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/html/sections.nix b/html/sections.nix new file mode 100644 index 0000000..2a571b6 --- /dev/null +++ b/html/sections.nix @@ -0,0 +1,18 @@ +{ html, make, ... }: + +let + sectionTemplate = section: { + inherit (section) title priority; + body = html.section { id = section.title; } [ + (html.h1 section.title) + section.body + ]; + }; + makeSection = path: sectionTemplate (make path { }); +in builtins.map makeSection [ + ./basics + ./education + ./experience + # ./languages + ./publications +] |
