Skip to content

Commit 1406912

Browse files
authored
Added active and completed projects
1 parent ff72e96 commit 1406912

File tree

1 file changed

+22
-2
lines changed

1 file changed

+22
-2
lines changed

research.html

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@
22
layout: default
33
title: Research Projects
44
---
5-
Our lab's research spans across various domains, ranging from hardware development to the creation of controllers utilizing Optimal Controls, learning-based controls, and safety-critical controls.
6-
The following projects serve as a testament to this diverse spectrum of work.
5+
<p>Our lab's research spans across various domains, ranging from hardware development to the creation of controllers utilizing Optimal Controls, learning-based controls, and safety-critical controls.
6+
The following projects serve as a testament to this diverse spectrum of work.</p>
7+
8+
<br>
9+
<br>
710

811
<h2>Active Projects</h2>
912
<div class="card-columns">
@@ -18,3 +21,20 @@ <h2>Active Projects</h2>
1821
{% endif %}
1922
{% endfor %}
2023
</div>
24+
25+
<br>
26+
<br>
27+
28+
<h2>Completed Projects</h2>
29+
<div class="card-columns">
30+
{% comment %}
31+
Sort the projects by date, putting those without dates last
32+
{% endcomment %}
33+
{% assign projects_by_date = site.projects | sort: 'last-updated', 'first' %}
34+
{% assign projects_by_date = projects_by_date | reverse %}
35+
{% for p in projects_by_date %}
36+
{% if p.status == "inactive" %}
37+
{% include project-card.html project=p %}
38+
{% endif %}
39+
{% endfor %}
40+
</div>

0 commit comments

Comments
 (0)