forked from pramodiisc/ppalcx.github.io
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathresearch.html
More file actions
executable file
·42 lines (40 loc) · 1.61 KB
/
Copy pathresearch.html
File metadata and controls
executable file
·42 lines (40 loc) · 1.61 KB
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
---
layout: default
title: Research Projects
---
<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.
The following research areas and projects serve as a testament to this diverse spectrum of work.
</p>
{% assign projects_by_date = site.projects | sort: 'last-updated', 'first' | reverse %}
{% for area in site.data.areas %}
{% assign is_even = forloop.index | modulo: 2 %}
{% assign flip = "" %}
{% if is_even == 0 %}
{% assign flip = " flip" %}
{% endif %}
<section class="research-area{{ flip }} reveal" id="{{ area.key }}">
<div class="research-area-row">
<div class="research-area-text">
<h2>{{ area.name }}</h2>
<p>{{ area.blurb }}</p>
</div>
<div class="research-area-img">
{% if area.video %}
<video autoplay muted loop playsinline preload="auto">
<source src="{{ area.video }}" type="video/mp4">
</video>
{% else %}
<img src="{{ area.image }}" alt="{{ area.name }}">
{% endif %}
</div>
</div>
<div class="research-scroll">
{% for p in projects_by_date %}
{% if p.category == area.key %}
<a class="research-tile" href="{{ site.base }}{{ p.url }}.html">{{ p.title }}</a>
{% endif %}
{% endfor %}
</div>
</section>
{% endfor %}