blob: 06df694e440afc8eb43597faff845f4ddbe6da83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{
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})"));
}
|