Skip to content

Commit d0e59f4

Browse files
committed
changes
1 parent e0c2fd8 commit d0e59f4

File tree

2 files changed

+82
-4
lines changed

2 files changed

+82
-4
lines changed

_data/people.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ faculty:
88
linkedin: "https://www.linkedin.com/in/filippo-maria-bianchi/"
99

1010
- name: "Benjamin Ricaud"
11+
bio: Benjamin is an associate professor at the physics department in the Machine Learning group. His main research topics are Graph signal processing, Methods for exploring large graphs (web and social networks), Graphs in biology, Machine learning in audio and explainable AI, Sparsity in data and models.
1112
webpage: "https://bricaud.github.io/"
1213

13-
1414
phd:
1515
- name: "Michele Guerra"
1616
image: "/images/mg.jpg"

people.html

Lines changed: 81 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
---
55

66
<div class="people-page">
7-
<h1>People at Northernmost Graph Machine Learning Group</h1>
7+
<h1>Meet our team!</h1>
88

99
<section class="faculty">
1010
<h2>Faculty Members</h2>
@@ -13,8 +13,7 @@ <h2>Faculty Members</h2>
1313
<img src="{{ person.image }}" alt="{{ person.name }}'s profile picture" class="profile-pic" />
1414
<div class="info">
1515
<h3>{{ person.name }}</h3>
16-
{% if person.bio %}
17-
<p>{{ person.bio }}</p>
16+
<p>{{ person.bio }}</p>
1817
<div class="links">
1918
{% if person.webpage %}
2019
<a href="{{ person.webpage }}" target="_blank" title="Personal Webpage">
@@ -48,6 +47,85 @@ <h3>{{ person.name }}</h3>
4847
</section>
4948

5049
<!-- Repeat the same structure for Postdocs, PhD Students, and Visitors -->
50+
<section class="phd">
51+
<h2>PhD students</h2>
52+
{% for person in site.data.people.phd %}
53+
<div class="person">
54+
<img src="{{ person.image }}" alt="{{ person.name }}'s profile picture" class="profile-pic" />
55+
<div class="info">
56+
<h3>{{ person.name }}</h3>
57+
<p>{{ person.bio }}</p>
58+
<div class="links">
59+
{% if person.webpage %}
60+
<a href="{{ person.webpage }}" target="_blank" title="Personal Webpage">
61+
<i class="fas fa-globe"></i>
62+
</a>
63+
{% endif %}
64+
{% if person.email %}
65+
<a href="mailto:{{ person.email }}" title="Email">
66+
<i class="fas fa-envelope"></i>
67+
</a>
68+
{% endif %}
69+
{% if person.scholar %}
70+
<a href="{{ person.scholar }}" target="_blank" title="Google Scholar">
71+
<i class="fas fa-graduation-cap"></i>
72+
</a>
73+
{% endif %}
74+
{% if person.twitter %}
75+
<a href="{{ person.twitter }}" target="_blank" title="Twitter">
76+
<i class="fab fa-x-twitter"></i>
77+
</a>
78+
{% endif %}
79+
{% if person.linkedin %}
80+
<a href="{{ person.linkedin }}" target="_blank" title="LinkedIn">
81+
<i class="fab fa-linkedin"></i>
82+
</a>
83+
{% endif %}
84+
</div>
85+
</div>
86+
</div>
87+
{% endfor %}
88+
</section>
89+
90+
<section class="visitors"></section>
91+
<h2>Visitors</h2>
92+
{% for person in site.data.people.visitors %}
93+
<div class="person">
94+
<img src="{{ person.image }}" alt="{{ person.name }}'s profile picture" class="profile-pic" />
95+
<div class="info">
96+
<h3>{{ person.name }}</h3>
97+
<div class="links">
98+
{% if person.webpage %}
99+
<a href="{{ person.webpage }}" target="_blank" title="Personal Webpage">
100+
<i class="fas fa-globe"></i>
101+
</a>
102+
{% endif %}
103+
{% if person.email %}
104+
<a href="mailto:{{ person.email }}" title="Email">
105+
<i class="fas fa-envelope"></i>
106+
</a>
107+
{% endif %}
108+
{% if person.scholar %}
109+
<a href="{{ person.scholar }}" target="_blank" title="Google Scholar">
110+
<i class="fas fa-graduation-cap"></i>
111+
</a>
112+
{% endif %}
113+
{% if person.twitter %}
114+
<a href="{{ person.twitter }}" target="_blank" title="Twitter">
115+
<i class="fab fa-x-twitter"></i>
116+
</a>
117+
{% endif %}
118+
{% if person.linkedin %}
119+
<a href="{{ person.linkedin }}" target="_blank" title="LinkedIn">
120+
<i class="fab fa-linkedin"></i>
121+
</a>
122+
{% endif %}
123+
</div>
124+
</div>
125+
</div>
126+
{% endfor %}
127+
</section>
128+
51129
</div>
52130

53131
<style>

0 commit comments

Comments
 (0)