summaryrefslogtreecommitdiff
path: root/html/research/default.nix
diff options
context:
space:
mode:
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;
+ }
+ ];
+}