- Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathresearchpast.html
62 lines (50 loc) · 1.32 KB
/
researchpast.html
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
50
51
52
53
54
55
56
57
58
59
60
61
62
---
layout: page
title: Past Research
description:
sitemap:
priority: 0.7
lastmod: 2021-11-17
changefreq: monthly
---
{% assign sorted = (site.research | sort: 'order') %}
{% assign sortedprojects = (site.projects | sort: 'order') %}
{% for pl in sorted %}
{% if pl.order >= 3 %}
{% if pl.projects.size > 0 %}
<divclass="content" id="list_{{ forloop.counter }}">
<h1>
{{pl.name}}
</h1>
{% for proj in sortedprojects %}
{% if pl.projects contains proj.key %}
<h2>
{% if proj.site %}
<ahref="{{ proj.site }}">
{% endif %}
<b>{{ proj.name }}</b>
{% if proj.site %}
</a>
{% endif %}
</h2>
<imgsrc="{{ proj.image }}" style="float: right; margin: 5px 10px 5px 20px; border: 1px solid #000000; max-width: 450px; min-width: 250px">
{{ proj.description }}
{% if proj.funding %}
<p><strong>Funding: </strong> {{proj.funding}} </p>
{% endif %}
{% if proj.students %}
<p><strong>Students: </strong> {{proj.students}} </p>
{% endif %}
{% if proj.publications %}
<p><strong>Publications and Products:</strong></p>
<ol>
{{proj.publications}}
</ol>
{% endif %}
<br>
{% endif %}
{% endfor %}
</div>
{% endif %}
{% endif %}
{% endfor %}