forked from greenelab/lab-website-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
30 changed files
with
438 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{% if include.lookup %} | ||
{% assign member = site.members | ||
| where_exp: "member", "member.slug == include.lookup" | ||
| first | ||
%} | ||
{% else %} | ||
{% assign member = include %} | ||
{% endif %} | ||
|
||
{% assign type = site.data.types[member.role] %} | ||
|
||
<div class="portrait-wrapper-pi"> | ||
<a | ||
{% if page.slug != member.slug %} | ||
href="{{ member.url | relative_url }}" | ||
{% endif %} | ||
class="portrait-pi" | ||
data-style="{{ include.style }}" | ||
aria-label="{{ member.name | default: "member link" }}" | ||
> | ||
{% if type %} | ||
{% include icon.html icon=type.icon %} | ||
{% endif %} | ||
|
||
<img | ||
src="{{ member.image | relative_url }}" | ||
class="portrait-image-pi" | ||
alt="member portrait" | ||
loading="lazy" | ||
{% include fallback.html %} | ||
> | ||
|
||
{% if member.name %} | ||
<span class="portrait-name-pi"> | ||
{{ member.name }} | ||
</span> | ||
{% endif %} | ||
|
||
{% if member.display_1 %} | ||
<span class="display_1"> | ||
{{member.display_1}} | ||
</span> | ||
{% endif %} | ||
|
||
{% if member.display_2 %} | ||
<span class="display_2"> | ||
{{member.display_2}} | ||
</span> | ||
{% endif %} | ||
|
||
{% if member.display_3 %} | ||
<span class="display_3"> | ||
{{member.display_3}} | ||
</span> | ||
{% endif %} | ||
</a> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{% if include.lookup %} | ||
{% assign member = site.members | ||
| where_exp: "member", "member.slug == include.lookup" | ||
| first | ||
%} | ||
{% else %} | ||
{% assign member = include %} | ||
{% endif %} | ||
|
||
{% assign type = site.data.types[member.role] %} | ||
|
||
<div class="portrait-wrapper"> | ||
<a | ||
{% if page.slug != member.slug %} | ||
href="{{ member.url | relative_url }}" | ||
{% endif %} | ||
class="portrait" | ||
data-style="{{ include.style }}" | ||
aria-label="{{ member.name | default: "member link" }}" | ||
> | ||
{% if type %} | ||
{% include icon.html icon=type.icon %} | ||
{% endif %} | ||
|
||
<img | ||
src="{{ member.image | relative_url }}" | ||
class="portrait-image" | ||
alt="member portrait" | ||
loading="lazy" | ||
{% include fallback.html %} | ||
> | ||
|
||
{% if member.name %} | ||
<span class="portrait-name"> | ||
{{ member.name }} | ||
</span> | ||
{% endif %} | ||
|
||
{% if member.display_1 %} | ||
<span class="display_1"> | ||
{{member.display_1}} | ||
</span> | ||
{% endif %} | ||
|
||
{% if member.display_2 %} | ||
<span class="display_2"> | ||
{{member.display_2}} | ||
</span> | ||
{% endif %} | ||
|
||
{% if member.display_3 %} | ||
<span class="display_3"> | ||
{{member.display_3}} | ||
</span> | ||
{% endif %} | ||
</a> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
name: Albert Dang | ||
image: people_photos/albert_dang.png | ||
role: grad | ||
affiliation: UC Riverside | ||
aliases: | ||
- A. Dang | ||
- A Dang | ||
links: | ||
# people-homepage: https://jyao97.github.io/ | ||
# people-email: [email protected] | ||
# people-gs: https://scholar.google.com/citations?user=P6I5HF8AAAAJ | ||
# people-office: 344 Winston Chung Hall (WCH) | ||
display_1: 'M.S. Student in Robotics' | ||
display_2: 'Spring 2024 -- Present' | ||
--- | ||
|
||
Yu Xia is currently a MS student in Robotics at UC Riverside. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
name: Anirudh Nittur Venkatesh | ||
image: people_photos/default.png | ||
role: grad | ||
affiliation: UC Riverside | ||
# aliases: | ||
# - Z. Li | ||
# - Z Li | ||
links: | ||
# people-homepage: https://jyao97.github.io/ | ||
# people-email: [email protected] | ||
# people-gs: https://scholar.google.com/citations?user=P6I5HF8AAAAJ | ||
# people-office: 344 Winston Chung Hall (WCH) | ||
display_1: 'M.S. Student in CS' | ||
display_2: 'Winter 2024 -- Present' | ||
--- | ||
|
||
Anirudh Nittur Venkatesh is currently a MS student in Computer Science at UC Riverside. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
name: Fnu Heman | ||
image: people_photos/default.png | ||
role: grad | ||
affiliation: UC Riverside | ||
# aliases: | ||
# - A. Dang | ||
# - A Dang | ||
links: | ||
# people-homepage: https://jyao97.github.io/ | ||
# people-email: [email protected] | ||
# people-gs: https://scholar.google.com/citations?user=P6I5HF8AAAAJ | ||
# people-office: 344 Winston Chung Hall (WCH) | ||
display_1: 'M.S. Student in Robotics' | ||
display_2: 'Winter 2024 -- Present' | ||
--- | ||
|
||
Fnu Heman is currently a MS student in Robotics at UC Riverside. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,8 @@ links: | |
people-email: [email protected] | ||
people-gs: https://scholar.google.com/citations?user=P6I5HF8AAAAJ | ||
# people-office: 344 Winston Chung Hall (WCH) | ||
display_1: 'Ph.D. Student in EE' | ||
display_2: 'Spring 2024 -- Present' | ||
--- | ||
|
||
Jianpeng Yao is currently a first-year PhD student at UC Riverside. His research interests include robotics, reinforcement learning, and safe machine decisions. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
name: Junge Zhang | ||
image: people_photos/default.png | ||
role: grad | ||
affiliation: UC Riverside | ||
aliases: | ||
- J. Zhang | ||
- J Zhang | ||
links: | ||
# people-homepage: https://jyao97.github.io/ | ||
# people-email: [email protected] | ||
# people-gs: https://scholar.google.com/citations?user=P6I5HF8AAAAJ | ||
# people-office: 344 Winston Chung Hall (WCH) | ||
display_1: 'Ph.D. Student in CS' | ||
display_2: 'Starting in Fall 2024' | ||
--- | ||
|
||
Junge Zhang is currently a first-year PhD student at UC Riverside. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
name: Justin Yue | ||
image: people_photos/default.png | ||
role: grad | ||
affiliation: UC Riverside | ||
aliases: | ||
- J. Yue | ||
- J Yue | ||
links: | ||
# people-homepage: https://jyao97.github.io/ | ||
# people-email: [email protected] | ||
# people-gs: https://scholar.google.com/citations?user=P6I5HF8AAAAJ | ||
# people-office: 344 Winston Chung Hall (WCH) | ||
display_1: 'Ph.D. Student in CS' | ||
display_2: 'Starting in Fall 2024' | ||
--- | ||
|
||
Justin Yue is currently a first-year PhD student at UC Riverside. He is co-advised by Prof. Hang Qiu and Prof. Jiachen Li. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
name: Mingxuan Yan | ||
image: people_photos/mingxuanyan.jpg | ||
role: grad | ||
affiliation: UC Riverside | ||
aliases: | ||
- M. Yan | ||
- M Yan | ||
links: | ||
# people-homepage: https://jyao97.github.io/ | ||
# people-email: [email protected] | ||
# people-gs: https://scholar.google.com/citations?user=P6I5HF8AAAAJ | ||
# people-office: 344 Winston Chung Hall (WCH) | ||
display_1: 'Ph.D. Student in CS' | ||
display_2: 'Starting in Fall 2024' | ||
--- | ||
|
||
Mingxuan Yan is currently a first-year PhD student at UC Riverside. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,8 @@ links: | |
# people-email: [email protected] | ||
# people-gs: https://scholar.google.com/citations?user=P6I5HF8AAAAJ | ||
# people-office: 344 Winston Chung Hall (WCH) | ||
display_1: 'Ph.D. Student in EE' | ||
display_2: 'Spring 2024 -- Present' | ||
--- | ||
|
||
Xiaopan Zhang is currently a first-year PhD student at UC Riverside. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
name: Yu Xia | ||
image: people_photos/yuxia.jpg | ||
role: grad | ||
affiliation: UC Riverside | ||
aliases: | ||
- Y. Xia | ||
- Y Xia | ||
links: | ||
# people-homepage: https://jyao97.github.io/ | ||
# people-email: [email protected] | ||
# people-gs: https://scholar.google.com/citations?user=P6I5HF8AAAAJ | ||
# people-office: 344 Winston Chung Hall (WCH) | ||
display_1: 'M.S. Student in Robotics' | ||
display_2: 'Spring 2024 -- Present' | ||
--- | ||
|
||
Yu Xia is currently a MS student in Robotics at UC Riverside. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,8 @@ links: | |
# people-email: [email protected] | ||
# people-gs: https://scholar.google.com/citations?user=P6I5HF8AAAAJ | ||
# people-office: 344 Winston Chung Hall (WCH) | ||
display_1: 'Ph.D. Student in CS' | ||
display_2: 'Spring 2024 -- Present' | ||
--- | ||
|
||
Zhixu Li is currently a second-year PhD student at UC Riverside. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
name: Zhifeng Wu | ||
image: people_photos/zhifengwu.jpg | ||
role: grad | ||
affiliation: UC Riverside | ||
aliases: | ||
- Z. Wu | ||
- Z Wu | ||
links: | ||
# people-homepage: https://jyao97.github.io/ | ||
# people-email: [email protected] | ||
# people-gs: https://scholar.google.com/citations?user=P6I5HF8AAAAJ | ||
# people-office: 344 Winston Chung Hall (WCH) | ||
display_1: 'M.S. Student in CS' | ||
display_2: 'Summer 2024 -- Present' | ||
--- | ||
|
||
Zhifeng Wu is currently a MS student in Computer Science at UC Riverside. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,8 @@ links: | |
# people-email: [email protected] | ||
# people-gs: https://scholar.google.com/citations?user=P6I5HF8AAAAJ | ||
# people-office: 344 Winston Chung Hall (WCH) | ||
display_1: 'Ph.D. Student in CS' | ||
display_2: 'Spring 2024 -- Present' | ||
--- | ||
|
||
Zhixu Li is currently a second-year PhD student at UC Riverside. |
Oops, something went wrong.