|
5 | 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 | 6 | The following projects serve as a testament to this diverse spectrum of work. |
7 | 7 |
|
8 | | -<section> |
9 | | - <h2>Active Projects</h2> |
10 | | - <div class="card-columns"> |
11 | | - {% comment %} |
12 | | - Sort the projects by date, putting those without dates last |
13 | | - {% endcomment %} |
14 | | - {% assign projects_by_date = site.projects | sort: 'last-updated', 'first' %} |
15 | | - {% assign projects_by_date = projects_by_date | reverse %} |
16 | | - {% for p in projects_by_date %} |
17 | | - {% if p.status != "inactive" %} |
18 | | - {% include project-card.html project=p %} |
19 | | - {% endif %} |
20 | | - {% endfor %} |
21 | | - </div> |
22 | | -</section> |
| 8 | +<h2>Active Projects</h2> |
| 9 | +<div class="card-columns"> |
| 10 | + {% comment %} |
| 11 | + Sort the projects by date, putting those without dates last |
| 12 | + {% endcomment %} |
| 13 | + {% assign projects_by_date = site.projects | sort: 'last-updated', 'first' %} |
| 14 | + {% assign projects_by_date = projects_by_date | reverse %} |
| 15 | + {% for p in projects_by_date %} |
| 16 | + {% if p.status != "inactive" %} |
| 17 | + {% include project-card.html project=p %} |
| 18 | + {% endif %} |
| 19 | + {% endfor %} |
| 20 | +</div> |
23 | 21 |
|
24 | | -<section> |
25 | | - <h2>Completed Projects</h2> |
26 | | - <div class="card-columns"> |
27 | | - {% comment %} |
28 | | - Sort the projects by date, putting those without dates last |
29 | | - {% endcomment %} |
30 | | - {% assign projects_by_date = site.projects | sort: 'last-updated', 'first' %} |
31 | | - {% assign projects_by_date = projects_by_date | reverse %} |
32 | | - {% for p in projects_by_date %} |
33 | | - {% if p.status = "inactive" %} |
34 | | - {% include project-card.html project=p %} |
35 | | - {% endif %} |
36 | | - {% endfor %} |
37 | | - </div> |
38 | | -</section> |
| 22 | +<h2>Completed Projects</h2> |
| 23 | +<div class="card-columns"> |
| 24 | + {% comment %} |
| 25 | + Sort the projects by date, putting those without dates last |
| 26 | + {% endcomment %} |
| 27 | + {% assign projects_by_date = site.projects | sort: 'last-updated', 'first' %} |
| 28 | + {% assign projects_by_date = projects_by_date | reverse %} |
| 29 | + {% for p in projects_by_date %} |
| 30 | + {% if p.status = "inactive" %} |
| 31 | + {% include project-card.html project=p %} |
| 32 | + {% endif %} |
| 33 | + {% endfor %} |
| 34 | +</div> |
0 commit comments