-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathresearch.html
More file actions
49 lines (42 loc) · 867 Bytes
/
research.html
File metadata and controls
49 lines (42 loc) · 867 Bytes
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
41
42
43
44
45
46
47
48
49
---
layout: default
title: Research
---
<section>
<h2>Research projects</h2>
<p>
Here are some of the projects members of this group work and have worked on.
</p>
{% assign current_projects = site.projects | where:"state","current" %}
{% assign old_projects = site.projects | where:"state","old" %}
<h3>Current projects</h3>
<ul>
{% for project in current_projects %}
<li>
<a href="{{ project.url | relative_url }}">
{{ project.name }}
</a>
({{ project.when }})
</li>
{% else %}
<li><em>none</em></li>
{% endfor %}
</ul>
<h3>Completed projects</h3>
<ul>
{% for project in old_projects %}
<li>
<a href="{{ project.url | relative_url }}">
{{ project.name }}
</a>
({{ project.when }})
</li>
{% else %}
<li><em>none</em></li>
{% endfor %}
</ul>
</section>
<section>
<h2>Publications</h2>
{% include publication-list.html name="all" %}
</section>