Skip to content

Commit

Permalink
Merge pull request #32 from RahulSajnani/main
Browse files Browse the repository at this point in the history
Update People Page with Postdoc & New Students
  • Loading branch information
drsrinathsridhar authored Sep 11, 2024
2 parents c28b216 + ce9a510 commit 3dc13ff
Show file tree
Hide file tree
Showing 6 changed files with 59 additions and 15 deletions.
50 changes: 37 additions & 13 deletions _data/people.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@
"alt": "Srinath Sridhar Profile Picture" ,
"link": "https://cs.brown.edu/people/ssrinath/index.html"
},
{
"category": "Postdoc",
"name": "Tao Lu",
"years": "2024 - Present",
"imgPath": "images/people/lutao2024.png",
"alt": "Tao Lu's Profile Picture",
"link": "https://inspirelt.github.io/"
},
{
"category": "PhD Students",
"name": "Rao Fu",
Expand Down Expand Up @@ -70,20 +78,12 @@
"imgPath": "images/people/zekun_li.jpg",
"alt": "Zekun Li Profile Picture",
"link": "https://kunkun0w0.github.io/"
},
{
"category": "Undergraduate/Master's Students",
"name": "Qiuhong (Anna) Wei",
"years": "2021 - Present",
"imgPath": "images/people/anna.png",
"alt": "Qiuhong Wei Profile Picture",
"link": "https://github.com/QiuhongAnnaWei"
},
},
{
"category": "Undergraduate/Master's Students",
"name": "Angela Xing",
"years": "2022 - Present",
"imgPath": "images/people/Angela_Xing.jpg",
"imgPath": "images/people/angela.jpeg",
"alt": "Angela Xing Profile Picture" ,
"link": "https://xing-angela.github.io/"
},
Expand All @@ -93,11 +93,29 @@
"years": "2023 - Present",
"imgPath": "images/people/Caroline_Zhang.jpg",
"alt": "Caroline Zhang Profile Picture"
},
},
{
"category": "Research Staff/Visitors",
"category": "Undergraduate/Master's Students",
"name": "Wanjia Fu",
"years": "2023 - Present",
"imgPath": "images/people/wfu16.jpg",
"alt": "Wanjia Fu's Profile Picture" ,
"link": "https://wanjia-fu.com/"
},
{
"category": "Brown IVL Alumni",
"name": "Qiuhong (Anna) Wei",
"years": "2021 - 2024",
"status": "Next: CMU",
"imgPath": "images/people/anna.png",
"alt": "Qiuhong Wei Profile Picture",
"link": "https://github.com/QiuhongAnnaWei"
},
{
"category": "Brown IVL Alumni",
"name": "Chandradeep Pokhariya",
"years": "2022 - Present",
"years": "2022 - 2024",
"status": "Next: IIT Delhi",
"imgPath": "images/people/chandradeep.jpeg",
"alt": "Chandradeep Pokhariya Profile Picture",
"link": "https://coreqode.github.io"
Expand All @@ -114,6 +132,12 @@
"years": "2023",
"status": "Next: Microsoft"
},
{
"category": "Brown IVL Alumni",
"name": "Shivam Duggal",
"years": "2020 - 2021",
"status": "Next: Master's student at CMU"
},
{
"category": "Brown IVL Alumni",
"name": "Theo McArn",
Expand Down
Binary file removed assets/images/people/Angela_Xing.jpg
Binary file not shown.
Binary file added assets/images/people/angela.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/people/lutao2024.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/people/wfu16.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 22 additions & 2 deletions people.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,31 @@ permalink: /people
{% endfor %}
</div>

## Postdocs
<div class="row people-category">
{% for person in site.data.people %}
{% if (person.category == "Postdoc") %}
<div class="person-item">
<a href="{{person.link}}" target="_blank">
<img class="card-img-top img-fluid" src="assets/{{ person.imgPath }}" alt="{{person.name}}">
</a>
<div class="people-info">
<h5 class="card-title">{{person.name}}</h5>
<div class="card-text">
<h6>{{ person.years }} </h6>
<h6>{{ person.moreInfo }} </h6>
</div>
</div>
</div>
{% endif %}
{% endfor %}
</div>

## PhD Students

<div class="row people-category">
{% for person in site.data.people %}
{% if person.category == "PhD Students" %}
{% if (person.category == "PhD Students") %}
<div class="person-item">
<a href="{{person.link}}" target="_blank">
<img class="card-img-top img-fluid" src="assets/{{ person.imgPath }}" alt="{{person.name}}">
Expand Down Expand Up @@ -67,7 +87,7 @@ permalink: /people
{% endfor %}
</div>

## Research Staff/Visitors
<!-- ## Research Staff/Visitors -->

<div class="row people-category">
{% for person in site.data.people %}
Expand Down

0 comments on commit 3dc13ff

Please sign in to comment.