Skip to content

Commit 564f974

Browse files
committed
Update team members and students.
Signed-off-by: DKL <[email protected]>
1 parent 4ba8cbe commit 564f974

File tree

5 files changed

+89
-14
lines changed

5 files changed

+89
-14
lines changed

src/_data/past_members.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
[
2+
{
3+
"firstName": "Lokesh",
4+
"lastName": "Mishra"
5+
},
6+
{
7+
"firstName": "Luca",
8+
"lastName": "Buratti"
9+
},
10+
{
11+
"firstName": "Francesco",
12+
"lastName": "Fusco"
13+
},
14+
{
15+
"firstName": "Diego",
16+
"lastName": "Antognini"
17+
},
18+
{
19+
"firstName": "Birgit",
20+
"lastName": "Pfitzmann"
21+
},
22+
{
23+
"firstName": "Rita",
24+
"lastName": "Kuznetsova"
25+
}
26+
]

src/_data/past_students.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
[
2+
{
3+
"firstName": "Fabian",
4+
"lastName": "Lindlbauer"
5+
},
6+
{
7+
"firstName": "Matteo",
8+
"lastName": "Omenetti"
9+
},
10+
{
11+
"firstName": "Emma",
12+
"lastName": "Sizer"
13+
},
14+
{
15+
"firstName": "Tien",
16+
"lastName": "Dee Lin"
17+
},
18+
{
19+
"firstName": "Sohayl",
20+
"lastName": "Dhibi"
21+
},
22+
{
23+
"firstName": "Christian",
24+
"lastName": "Cadisch"
25+
},
26+
{
27+
"firstName": "Teodora",
28+
"lastName": "Nedic"
29+
},
30+
{
31+
"firstName": "Isabelle",
32+
"lastName": "Franzen"
33+
}
34+
]

src/_data/team.json

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,6 @@
1717
"code": "cesar-berrospi-ramis",
1818
"imageCode": "992"
1919
},
20-
{
21-
"firstName": "Luca",
22-
"lastName": "Buratti",
23-
"code": "luca-buratti--1",
24-
"imageCode": "15089"
25-
},
2620
{
2721
"firstName": "Michele",
2822
"lastName": "Dolfi",
@@ -71,12 +65,6 @@
7165
"code": "ingmar-meijer",
7266
"imageCode": "1200"
7367
},
74-
{
75-
"firstName": "Lokesh",
76-
"lastName": "Mishra",
77-
"code": "lokesh-mishra",
78-
"imageCode": "924"
79-
},
8068
{
8169
"firstName": "Lucas",
8270
"lastName": "Morin",

src/index.njk

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ title: IBM Deep Search
277277
<a href="mailto:[email protected]">Contact us</a>
278278
with your résumé and interests.
279279
</p>
280-
<h3>Team</h3>
280+
<h3>Team members</h3>
281281
<div class="team">
282282
{% for person in team %}
283283
<a {% if person.code %} href="https://research.ibm.com/people/{{ person.code }}" {% endif %}>
@@ -294,6 +294,24 @@ title: IBM Deep Search
294294
</a>
295295
{% endfor %}
296296
</div>
297+
<h3>Past members</h3>
298+
<div class="past">
299+
{% for person in past_members %}
300+
<div>
301+
<div>{{ person.firstName }}</div>
302+
<b>{{ person.lastName }}</b>
303+
</div>
304+
{% endfor %}
305+
</div>
306+
<h3>Past students</h3>
307+
<div class="past">
308+
{% for person in past_students %}
309+
<div>
310+
<div>{{ person.firstName }}</div>
311+
<b>{{ person.lastName }}</b>
312+
</div>
313+
{% endfor %}
314+
</div>
297315
<h3>Locations</h3>
298316
<div class="locations">
299317
<div>

src/styles/main.css

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,8 @@ table td {
404404
position: relative;
405405
}
406406

407-
.team {
407+
.team,
408+
.past {
408409
--card-size: 7rem;
409410
margin-top: 1rem;
410411

@@ -446,6 +447,14 @@ table td {
446447
flex-direction: column;
447448
}
448449

450+
.past > div {
451+
width: var(--card-size);
452+
height: var(--card-size);
453+
padding: 1rem;
454+
455+
background-color: var(--cds-background);
456+
}
457+
449458
/* Locations. */
450459
.locations {
451460
margin-top: 1rem;

0 commit comments

Comments
 (0)