Skip to content

Latest commit

 

History

History
389 lines (364 loc) · 12.4 KB

team.md

File metadata and controls

389 lines (364 loc) · 12.4 KB
layout title permalink
articles
Team
team/
<style> i { color: #555555; font-size: 14px; } p { line-height: 120%; margin: 0; } /* Additional styles for overlays */ .overlay { color: white; /* Sets all text within the overlay to white */ background-color: rgba(0, 0, 0, 0.5); /* Adds a semi-transparent black background to the overlay */ padding: 10px; /* Adds padding around the text for better spacing */ } .overlay--bottom { position: absolute; bottom: 0; width: 100%; /* Ensures the overlay covers the entire width of the image */ } /* Ensure the card positioning context */ .card { position: relative; overflow: hidden; /* Keeps the overlay within the boundaries of the card */ } .card__image img { width: 100%; /* Ensure the image fills the container */ height: auto; /* Maintain aspect ratio */ object-fit: cover; /* Cover the container without stretching */ } .card__image a { display: block; /* Treat the link like a block element to fill the container */ } </style>

Dinesh Bharadia

Principal Investigator, Associate Professor ECE

Fred Harris

Honorable Member, Adjunct Professor ECE

PhD Students

{% for people in site.data.people %} {% if people.role == "PhD" %}
Profile image of {{ people.name }}
{% if people.website %}

{{ people.name }}

{% else %}

{{ people.name }}

{% endif %}

{{ people.role }}

{% endif %} {% endfor %}

Collaborations and Postdoctoral Researchers

{% for people in site.data.people %} {% if people.role != "PhD" and people.role != "Principal Investigator" %}
Profile image of {{ people.name }}
{% if people.website %}

{{ people.name }}

{% else %}

{{ people.name }}

{% endif %}

{{ people.role }}

{% endif %} {% endfor %}

Masters Students

{% for people in site.data.people_text %} {% if people.role == "MS" %} {% if people.col == 1 %}

{{ people.name }}

{% endif %} {% endif %} {% endfor %}
{% for people in site.data.people_text %} {% if people.role == "MS" %} {% if people.col == 2 %}

{{ people.name }}

{% endif %} {% endif %} {% endfor %}

Undergraduate Students

{% for people in site.data.people_text %} {% if people.role == "BS" %} {% if people.col == 1 %}

{{ people.name }}

{% endif %} {% endif %} {% endfor %}
{% for people in site.data.people_text %} {% if people.role == "BS" %} {% if people.col == 2 %}

{{ people.name }}

{% endif %} {% endif %} {% endfor %}

Alumni

PhD

{% assign alumni_with_pics = site.data.alumni | where_exp: "item", "item.picture" %} {% assign alumni_without_pics = site.data.alumni | where_exp: "item", "item.picture == nil" %}

{% for people in alumni_with_pics %} {% if people.role == "PhD" %}

{% if people.website %}

{{ people.name }}

{% else %}

{{ people.name }}

{% endif %}

Class of {{ people.year }}{% if people.now %}, {{ people.now }}{% endif %}

{% endif %} {% endfor %}

{% for people in alumni_without_pics %} {% if people.role == "PhD" %}
{% if people.website %}

{{ people.name }}

{% else %}

{{ people.name }}

{% endif %}

Class of {{ people.year }}{% if people.now %}, {{ people.now }}{% endif %}

{% endif %} {% endfor %}

Postdocs and Researchers

{% assign alumni_with_pics = site.data.alumni | where_exp: "item", "item.picture" %} {% assign alumni_without_pics = site.data.alumni | where_exp: "item", "item.picture == nil" %}

{% for people in alumni_with_pics %} {% if people.role == "Visiting Researcher" or people.role == "Postdoc" %}

{% if people.website %}

{{ people.name }}

{% else %}

{{ people.name }}

{% endif %}

{{ people.role }}{% if people.now %}, {{ people.now }}{% endif %}

{% endif %} {% endfor %}

{% for people in alumni_without_pics %} {% if people.role == "Researcher" or people.role == "Postdoc" %}
{% if people.website %}

{{ people.name }}

{% else %}

{{ people.name }}

{% endif %}

{{ people.role }}{% if people.now %}, {{ people.now }}{% endif %}

{% endif %} {% endfor %}

Masters

{% for people in site.data.alumni %} {% if people.role == "MS" %} {% if people.col == 1 %}
{% if people.website %}

{{ people.name }}

{% else %}

{{ people.name }}

{% endif %}

Class of {{ people.year }}{% if people.now %}, {{ people.now }} {% endif %}


{% endif %} {% endif %} {% endfor %}
{% for people in site.data.alumni %} {% if people.role == "MS" %} {% if people.col == 2 %}
{% if people.website %}

{{ people.name }}

{% else %}

{{ people.name }}

{% endif %}

Class of {{ people.year }}{% if people.now %}, {{ people.now }} {% endif %}


{% endif %} {% endif %} {% endfor %}

Undergraduate

{% for people in site.data.alumni %} {% if people.role == "BS" %} {% if people.col == 1 %}
{% if people.website %}

{{ people.name }}

{% else %}

{{ people.name }}

{% endif %}

Class of {{ people.year }}{% if people.now %}, {{ people.now }} {% endif %}


{% endif %} {% endif %} {% endfor %}
{% for people in site.data.alumni %} {% if people.role == "BS" %} {% if people.col == 2 %}
{% if people.website %}

{{ people.name }}

{% else %}

{{ people.name }}

{% endif %}

Class of {{ people.year }}{% if people.now %}, {{ people.now }} {% endif %}


{% endif %} {% endif %} {% endfor %}

International Summer Interns

{% for people in site.data.alumni %} {% if people.role == "Intern" %} {% if people.col == 1 %}
{% if people.website %}

{{ people.name }}

{% else %}

{{ people.name }}

{% endif %}

Class of {{ people.year }}{% if people.now %}, {{ people.now }} {% endif %}


{% endif %} {% endif %} {% endfor %}
{% for people in site.data.alumni %} {% if people.role == "Intern" %} {% if people.col == 2 %}
{% if people.website %}

{{ people.name }}

{% else %}

{{ people.name }}

{% endif %}

Class of {{ people.year }}{% if people.now %}, {{ people.now }} {% endif %}


{% endif %} {% endif %} {% endfor %}