Skip to content

Commit

Permalink
Merge pull request #40 from DS4SD/update-members-09-24
Browse files Browse the repository at this point in the history
Update team members and students
  • Loading branch information
kdinkla authored Sep 18, 2024
2 parents 4ba8cbe + cf0271c commit a6736ba
Show file tree
Hide file tree
Showing 5 changed files with 93 additions and 14 deletions.
26 changes: 26 additions & 0 deletions src/_data/past_members.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[
{
"firstName": "Lokesh",
"lastName": "Mishra"
},
{
"firstName": "Luca",
"lastName": "Buratti"
},
{
"firstName": "Francesco",
"lastName": "Fusco"
},
{
"firstName": "Diego",
"lastName": "Antognini"
},
{
"firstName": "Birgit",
"lastName": "Pfitzmann"
},
{
"firstName": "Rita",
"lastName": "Kuznetsova"
}
]
38 changes: 38 additions & 0 deletions src/_data/past_students.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
[
{
"firstName": "Fabian",
"lastName": "Lindlbauer"
},
{
"firstName": "Matteo",
"lastName": "Omenetti"
},
{
"firstName": "Eric",
"lastName": "Sease"
},
{
"firstName": "Alice",
"lastName": "Sizer"
},
{
"firstName": "Tien",
"lastName": "Dee Lin"
},
{
"firstName": "Sohayl",
"lastName": "Dhibi"
},
{
"firstName": "Christian",
"lastName": "Cadisch"
},
{
"firstName": "Teodora",
"lastName": "Nedic"
},
{
"firstName": "Isabelle",
"lastName": "Franzen"
}
]
12 changes: 0 additions & 12 deletions src/_data/team.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,6 @@
"code": "cesar-berrospi-ramis",
"imageCode": "992"
},
{
"firstName": "Luca",
"lastName": "Buratti",
"code": "luca-buratti--1",
"imageCode": "15089"
},
{
"firstName": "Michele",
"lastName": "Dolfi",
Expand Down Expand Up @@ -71,12 +65,6 @@
"code": "ingmar-meijer",
"imageCode": "1200"
},
{
"firstName": "Lokesh",
"lastName": "Mishra",
"code": "lokesh-mishra",
"imageCode": "924"
},
{
"firstName": "Lucas",
"lastName": "Morin",
Expand Down
20 changes: 19 additions & 1 deletion src/index.njk
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ title: IBM Deep Search
<a href="mailto:[email protected]">Contact us</a>
with your résumé and interests.
</p>
<h3>Team</h3>
<h3>Team members</h3>
<div class="team">
{% for person in team %}
<a {% if person.code %} href="https://research.ibm.com/people/{{ person.code }}" {% endif %}>
Expand All @@ -294,6 +294,24 @@ title: IBM Deep Search
</a>
{% endfor %}
</div>
<h3>Past members</h3>
<div class="past">
{% for person in past_members %}
<div>
<div>{{ person.firstName }}</div>
<b>{{ person.lastName }}</b>
</div>
{% endfor %}
</div>
<h3>Past students</h3>
<div class="past">
{% for person in past_students %}
<div>
<div>{{ person.firstName }}</div>
<b>{{ person.lastName }}</b>
</div>
{% endfor %}
</div>
<h3>Locations</h3>
<div class="locations">
<div>
Expand Down
11 changes: 10 additions & 1 deletion src/styles/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,8 @@ table td {
position: relative;
}

.team {
.team,
.past {
--card-size: 7rem;
margin-top: 1rem;

Expand Down Expand Up @@ -446,6 +447,14 @@ table td {
flex-direction: column;
}

.past > div {
width: var(--card-size);
height: var(--card-size);
padding: 1rem;

background-color: var(--cds-background);
}

/* Locations. */
.locations {
margin-top: 1rem;
Expand Down

0 comments on commit a6736ba

Please sign in to comment.