Skip to content

Commit 7281204

Browse files
committed
Update team contact and news content
1 parent e443dd3 commit 7281204

6 files changed

Lines changed: 77 additions & 5 deletions

File tree

_config.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,17 @@ nav_links:
2525

2626
# Latest news (shown on home page, most recent first)
2727
news:
28+
- date: "2026.06"
29+
text: "EvolveR is accepted at ICML 2026 🎉"
30+
link_text: "EvolveR"
31+
link: "https://arxiv.org/pdf/2510.16079"
2832
- date: "2026.04"
29-
text: "Two Papers are accepted at ACL 2026 🎉"
33+
text: "Two Papers (MUSE, Trainee-Bench) are accepted at ACL 2026 🎉"
34+
links:
35+
- text: "MUSE"
36+
url: "https://arxiv.org/pdf/2510.08002"
37+
- text: "Trainee-Bench"
38+
url: "https://arxiv.org/pdf/2601.08173"
3039
- date: "2026.01"
3140
text: "Three Papers are accepted at ICLR 2026 🎉"
3241

_data/people.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
email: "974930108@qq.com"
9797

9898
- name: "Yufan Shen"
99-
role: "Faculty"
99+
role: "Alumni"
100100
photo: "/assets/images/people/shenyufan.jpg"
101101
cartoon: "/assets/images/cartoon/shenyufan.jpeg"
102102
bio: ""

assets/css/main.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -819,7 +819,7 @@ button.pub-link {
819819
font-size: 1rem; font-weight: 300;
820820
color: var(--text-secondary);
821821
margin-bottom: 44px; line-height: 1.75;
822-
max-width: 560px;
822+
max-width: 640px;
823823
}
824824

825825
/* ── Responsive ── */

contact.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,14 @@ description: Get in touch with KnowledgeXLab — collaborations, student applica
3131
<div class="value"><a href="{{ site.lab_github }}" target="_blank" rel="noopener">{{ site.lab_github }}</a></div>
3232
</div>
3333
</div>
34+
35+
<div class="contact-card">
36+
<div class="icon">📕</div>
37+
<div>
38+
<div class="label">Xiaohongshu</div>
39+
<div class="value"><a href="https://www.xiaohongshu.com/user/profile/67867a40000000000801c751" target="_blank" rel="noopener">KnowledgeXLab</a></div>
40+
</div>
41+
</div>
3442
</div>
3543

3644
<div class="positions-box">

index.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,24 @@ research_directions:
4949
{% for item in site.news limit:5 %}
5050
<div class="news-item">
5151
<span class="news-date {% unless forloop.first %}old{% endunless %}">{{ item.date }}</span>
52-
<span class="news-text">{{ item.text }}</span>
52+
<span class="news-text">
53+
{% if item.links %}
54+
{% assign remaining_text = item.text %}
55+
{% for news_link in item.links %}
56+
{% assign news_parts = remaining_text | split: news_link.text %}
57+
{{ news_parts[0] }}<a href="{{ news_link.url }}" target="_blank" rel="noopener">{{ news_link.text }}</a>
58+
{% assign remaining_text = news_parts[1] %}
59+
{% endfor %}
60+
{{ remaining_text }}
61+
{% elsif item.link and item.link_text %}
62+
{% assign news_parts = item.text | split: item.link_text %}
63+
{{ news_parts[0] }}<a href="{{ item.link }}" target="_blank" rel="noopener">{{ item.link_text }}</a>{{ news_parts[1] }}
64+
{% elsif item.link %}
65+
<a href="{{ item.link }}" target="_blank" rel="noopener">{{ item.text }}</a>
66+
{% else %}
67+
{{ item.text }}
68+
{% endif %}
69+
</span>
5370
</div>
5471
{% endfor %}
5572
</div>

people.md

Lines changed: 39 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: default
33
title: Team
4-
description: Meet the KnowledgeXLab team — faculty, PhD students, and master students.
4+
description: Meet the KnowledgeXLab team — faculty, students, and alumni.
55
---
66

77
<h1 class="page-title">Team</h1>
@@ -191,3 +191,41 @@ description: Meet the KnowledgeXLab team — faculty, PhD students, and master s
191191
{% endfor %}
192192
</div>
193193
{% 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

Comments
 (0)