blob: 21152e20b812675d9aa7ce0bac743b42f4919380 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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;
}
];
}
|