Skip to content

Commit 6b0e6dd

Browse files
authored
Add files via upload
1 parent e8d459e commit 6b0e6dd

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

robots.html

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
layout: default
3+
title: Research Projects
4+
---
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>
10+
11+
<h2>Active Projects</h2>
12+
<div class="card-columns">
13+
{% comment %}
14+
Sort the projects by date, putting those without dates last
15+
{% endcomment %}
16+
{% assign projects_by_date = site.projects | sort: 'last-updated', 'first' %}
17+
{% assign projects_by_date = projects_by_date | reverse %}
18+
{% for p in projects_by_date %}
19+
{% if p.status != "inactive" %}
20+
{% include project-card.html project=p %}
21+
{% endif %}
22+
{% endfor %}
23+
</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)