summaryrefslogtreecommitdiff
path: root/content/default.nix
diff options
context:
space:
mode:
authorQuentin Aristote <quentin@aristote.fr>2022-11-12 11:41:51 +0100
committerQuentin Aristote <quentin@aristote.fr>2022-11-12 11:41:51 +0100
commitdbf48a4665a66dd37150f3886026ecd9bd82967f (patch)
tree65bc5167f7c71952cf2ce4072197f6e23e81f98b /content/default.nix
parent056ee77ab2ed3cf488ac9b1b8ac82664948a42a3 (diff)
restructure directories
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
-]