summaryrefslogtreecommitdiff
path: root/html/languages/default.nix
blob: f7c49f00595c14bc9a4485ecc3140efb9425136d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ html, data, ... }:

let languages = data.languages;
in {
  title = "Languages";
  priority = 40;
  body = with html;
    (for languages (language:
      with language;
      "${
        lib.concatStrings (for icon.codepoints (codepoint: "&x${codepoint}"))
      } ${name} (${proficiency})"));
}