|
1 | 1 | --- |
2 | 2 | layout: default |
3 | 3 | title: Team |
4 | | -description: Meet the KnowledgeXLab team — faculty, PhD students, and master students. |
| 4 | +description: Meet the KnowledgeXLab team — faculty, students, and alumni. |
5 | 5 | --- |
6 | 6 |
|
7 | 7 | <h1 class="page-title">Team</h1> |
@@ -191,3 +191,41 @@ description: Meet the KnowledgeXLab team — faculty, PhD students, and master s |
191 | 191 | {% endfor %} |
192 | 192 | </div> |
193 | 193 | {% endif %} |
| 194 | + |
| 195 | +<!-- Alumni --> |
| 196 | +{% assign alumni = site.data.people | where: "role", "Alumni" %} |
| 197 | +{% if alumni.size > 0 %} |
| 198 | +<div class="section-label">Alumni</div> |
| 199 | +<div class="people-grid"> |
| 200 | + {% for person in alumni %} |
| 201 | + <div class="person-card"> |
| 202 | + <div class="avatar{% if person.cartoon and person.cartoon != "" %} has-cartoon{% endif %}"> |
| 203 | + {% if person.photo and person.photo != "" %} |
| 204 | + <img class="photo-real" src="{{ person.photo | relative_url }}" alt="{{ person.name }}"> |
| 205 | + {% else %} |
| 206 | + {{ person.photo_emoji | default: "👤" }} |
| 207 | + {% endif %} |
| 208 | + {% if person.cartoon and person.cartoon != "" %} |
| 209 | + <img class="photo-cartoon" src="{{ person.cartoon | relative_url }}" alt="{{ person.name }} cartoon"> |
| 210 | + {% endif %} |
| 211 | + </div> |
| 212 | + <h3>{{ person.name }}</h3> |
| 213 | + {% if person.research %}<div class="research">{{ person.research }}</div>{% endif %} |
| 214 | + <div class="person-links"> |
| 215 | + {% if person.links.homepage and person.links.homepage != "" %} |
| 216 | + <a href="{{ person.links.homepage }}" class="icon-link" target="_blank" rel="noopener" title="Homepage"><i class="fas fa-house"></i></a> |
| 217 | + {% endif %} |
| 218 | + {% if person.links.scholar and person.links.scholar != "" %} |
| 219 | + <a href="{{ person.links.scholar }}" class="icon-link" target="_blank" rel="noopener" title="Google Scholar"><i class="ai ai-google-scholar"></i></a> |
| 220 | + {% endif %} |
| 221 | + {% if person.links.github and person.links.github != "" %} |
| 222 | + <a href="{{ person.links.github }}" class="icon-link" target="_blank" rel="noopener" title="GitHub"><i class="fab fa-github"></i></a> |
| 223 | + {% endif %} |
| 224 | + {% if person.links.email and person.links.email != "" %} |
| 225 | + <a href="mailto:{{ person.links.email }}" class="icon-link" title="Email"><i class="fas fa-envelope"></i></a> |
| 226 | + {% endif %} |
| 227 | + </div> |
| 228 | + </div> |
| 229 | + {% endfor %} |
| 230 | +</div> |
| 231 | +{% endif %} |
0 commit comments