summaryrefslogtreecommitdiff
path: root/content/languages.html.nix
diff options
context:
space:
mode:
authorQuentin Aristote <quentin@aristote.fr>2022-11-11 18:38:28 +0100
committerQuentin Aristote <quentin@aristote.fr>2022-11-11 18:38:28 +0100
commit056ee77ab2ed3cf488ac9b1b8ac82664948a42a3 (patch)
tree54c202aae529c00b86e413aee66bc77f332f2d17 /content/languages.html.nix
initial ocommit
Diffstat (limited to 'content/languages.html.nix')
-rw-r--r--content/languages.html.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/content/languages.html.nix b/content/languages.html.nix
new file mode 100644
index 0000000..36780db
--- /dev/null
+++ b/content/languages.html.nix
@@ -0,0 +1,10 @@
+{ html, data, ... }:
+
+let languages = data.languages;
+in {
+ title = "Languages";
+ priority = 40;
+ body = with html;
+ lines (for languages
+ (language: with language; "${icon} ${name} (${proficiency})"));
+}