summaryrefslogtreecommitdiff
path: root/content/default.nix
blob: 0b0d0ca389778fe2d30697e0771261a44dff8819 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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.html.nix
  ./education.html.nix
  ./experience.html.nix
  # ./languages.html.nix
  ./publications.html.nix
]