summaryrefslogtreecommitdiff
path: root/content/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'content/default.nix')
-rw-r--r--content/default.nix18
1 files changed, 0 insertions, 18 deletions
diff --git a/content/default.nix b/content/default.nix
deleted file mode 100644
index 0b0d0ca..0000000
--- a/content/default.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{ 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.html.nix
- ./education.html.nix
- ./experience.html.nix
- # ./languages.html.nix
- ./publications.html.nix
-]