summaryrefslogtreecommitdiff
path: root/html/research/default.nix
diff options
context:
space:
mode:
authoraristote <quentin.aristote@irif.fr>2025-07-27 17:47:32 +0200
committeraristote <quentin.aristote@irif.fr>2025-07-27 17:47:32 +0200
commit8622e40e675c72b9402625189517f99891a046c9 (patch)
treee1384995b609e7154f38725a29183f2f442d2c75 /html/research/default.nix
parent90b687b24ca7f64bd4087144a40c6a2f6e3c14a9 (diff)
add talks to publications, rename to research, split into tabbox
Diffstat (limited to 'html/research/default.nix')
-rw-r--r--html/research/default.nix40
1 files changed, 40 insertions, 0 deletions
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;
+ }
+ ];
+}