-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathresearch.html
More file actions
38 lines (33 loc) · 993 Bytes
/
research.html
File metadata and controls
38 lines (33 loc) · 993 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
---
layout: default
title: Research Projects
---
<div>
<img class="banner" src="/img/banner.png"/>
</div>
<div class="card-columns">
{% comment %}
Sort the projects by date, putting those without dates last
{% endcomment %}
{% assign projects_by_date = site.projects | sort: 'last-updated', 'first' %}
{% assign projects_by_date = projects_by_date | reverse %}
{% for p in projects_by_date %}
{% if p.active %}
{% include project-card.html project=p %}
{% endif %}
{% endfor %}
</div>
<p></p>
<h3>Inactive Projects</h3>
<div class="card-columns">
{% comment %}
Sort the projects by date, putting those without dates last
{% endcomment %}
{% assign projects_by_date = site.projects | sort: 'last-updated', 'first' %}
{% assign projects_by_date = projects_by_date | reverse %}
{% for p in projects_by_date %}
{% if p.active != true %}
{% include project-card.html project=p %}
{% endif %}
{% endfor %}
</div>