Skip to content

Commit

Permalink
add spot for undergrad
Browse files Browse the repository at this point in the history
  • Loading branch information
mfe7 committed Jan 15, 2024
1 parent 44eb8b6 commit 05483ce
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 4 deletions.
14 changes: 10 additions & 4 deletions _data/students.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@
# personal_webpage: https://google.com
# research_interests: Neural Network Verification, Motion Planning, High-Speed Navigation

# - name: Example UG Student
# degree: bs
# photo: mfe.jpg
# personal_webpage: https://google.com
# research_interests: Neural Network Verification, Motion Planning, High-Speed Navigation

- name: Sahasrajit Anantharamakrishnan
degree: ms
photo: SahasrajitAnantharamakrishnan.png
Expand All @@ -20,10 +26,10 @@
photo: mewada.png
personal_webpage: https://yashmewada9618.github.io/

- name: Anselm Mmaju
degree: ms
photo: mmaju.png
personal_webpage: https://github.com/Tuachi
# - name: Anselm Mmaju
# degree: ms
# photo: mmaju.png
# personal_webpage: https://github.com/Tuachi

- name: Jeff Pflueger
degree: phd
Expand Down
45 changes: 45 additions & 0 deletions _pages/team.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,3 +169,48 @@ permalink: /team/
{% endif %}


## Undergraduate Students
{% assign number_printed = 0 %}
{% for member in site.data.students %}

{% if member.degree == "bs" %}

{% assign even_odd = number_printed | modulo: 2 %}

{% if even_odd == 0 %}
<div class="row">
{% endif %}

<div class="col-sm-6 clearfix">
{% if member.photo %}
<img src="{{ site.url }}{{ site.baseurl }}/images/members/{{ member.photo }}" class="img-responsive" width="25%" style="float: left" />
{% endif %}

<h4>{{ member.name }}</h4>

{% if member.personal_webpage %}
<h5><a href="{{member.personal_webpage}}" target="_blank">Personal Webpage</a></h5>
{% endif %}

{% if member.research_interests %}
<h5>Research Interests: {{member.research_interests}}</h5>
{% endif %}

</div>

{% assign number_printed = number_printed | plus: 1 %}

{% if even_odd == 1 %}
</div>
{% endif %}

{% endif %}

{% endfor %}

{% assign even_odd = number_printed | modulo: 2 %}
{% if even_odd == 1 %}
</div>
{% endif %}


0 comments on commit 05483ce

Please sign in to comment.