From 05483ce3832f3e4e0de9aca97f54cb11d0c2ba2a Mon Sep 17 00:00:00 2001 From: Michael Everett Date: Mon, 15 Jan 2024 14:50:53 -0500 Subject: [PATCH] add spot for undergrad --- _data/students.yml | 14 ++++++++++---- _pages/team.md | 45 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+), 4 deletions(-) diff --git a/_data/students.yml b/_data/students.yml index 85bf9d0..a16c4f6 100644 --- a/_data/students.yml +++ b/_data/students.yml @@ -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 @@ -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 diff --git a/_pages/team.md b/_pages/team.md index 392edd1..996101a 100644 --- a/_pages/team.md +++ b/_pages/team.md @@ -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 %} +
+{% endif %} + +
+{% if member.photo %} + +{% endif %} + +

{{ member.name }}

+ +{% if member.personal_webpage %} +
Personal Webpage
+{% endif %} + +{% if member.research_interests %} +
Research Interests: {{member.research_interests}}
+{% endif %} + +
+ +{% assign number_printed = number_printed | plus: 1 %} + +{% if even_odd == 1 %} +
+{% endif %} + +{% endif %} + +{% endfor %} + +{% assign even_odd = number_printed | modulo: 2 %} +{% if even_odd == 1 %} + +{% endif %} + +