From 8622e40e675c72b9402625189517f99891a046c9 Mon Sep 17 00:00:00 2001 From: aristote Date: Sun, 27 Jul 2025 17:47:32 +0200 Subject: add talks to publications, rename to research, split into tabbox --- html/research/default.nix | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 html/research/default.nix (limited to 'html/research/default.nix') diff --git a/html/research/default.nix b/html/research/default.nix new file mode 100644 index 0000000..21152e2 --- /dev/null +++ b/html/research/default.nix @@ -0,0 +1,40 @@ +{ + make, + html, + ... +}: let + writings = make ./writings.nix {}; + talks = make ./talks.nix {}; +in { + title = "Research"; + priority = 10; + body = with html; + tabbox "research" [ + { + id = "conferences"; + checked = true; + title = "Conference papers"; + content = writings.conferences; + } + { + id = "journals"; + title = "Journal papers"; + content = writings.journals; + } + { + id = "misc"; + title = "Non-peer-reviewed"; + content = writings.misc; + } + { + id = "reports"; + title = "Reports"; + content = writings.reports; + } + { + id = "talks"; + title = "Talks"; + content = talks; + } + ]; +} -- cgit v1.2.3