Skip to content

Commit 0f56d3b

Browse files
Merge pull request #6 from aidos-lab/er
Er
2 parents 4e18955 + fe0bc77 commit 0f56d3b

File tree

19 files changed

+114
-71
lines changed

19 files changed

+114
-71
lines changed

content/people.md

Lines changed: 20 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -14,32 +14,26 @@ We, the people of the AIDOS Lab, firmly believe in and are committed to [Dr. Fed
1414
All people are listed in chronological order of joining the lab or
1515
starting a collaboration with us.
1616

17-
{{< person "BR" >}}
18-
19-
{{< person "JvR" >}}
20-
21-
{{< person "JW" >}}
22-
23-
{{< person "KL" >}}
24-
25-
{{< person "ER" >}}
26-
27-
{{< person "SK" >}}
28-
29-
{{< person "DS" >}}
30-
31-
{{< person "RB" >}}
32-
33-
{{< person "ES" >}}
34-
35-
{{< person "RvM" >}}
36-
37-
{{< person "MA" >}}
38-
39-
| | |
40-
|:--------------------------------------------------------------------------:|:--------------------------------------------------------------------------------------:|:-------------------------------------------------------------------------------------------:|
41-
| {{< figure src="ra.jpg" width="180" class="person" alt="Rayna Andreeva" caption="[Rayna Andreeva](https://rorondre.github.io)" >}} | {{< figure src="ic.jpg" width="180" class="person" alt="Irene Cannistraci" caption="[Irene Cannistraci](https://irene.cannistraci.dev)" >}} | {{< figure src="cc.jpg" width="180" class="person" alt="Corinna Coupette" caption="[Corinna Coupette](https://www.coupette.io)" >}} |
42-
| {{< figure src="ps.jpg" width="180" class="person" alt="Pragya Singh" caption="Pragya Singh" >}} | | |
17+
<div class="people-card-container">
18+
{{< person "BR" >}}
19+
{{< person "JvR" >}}
20+
{{< person "JW" >}}
21+
{{< person "KL" >}}
22+
{{< person "ER" >}}
23+
{{< person "SK" >}}
24+
{{< person "DS" >}}
25+
{{< person "RB" >}}
26+
{{< person "ES" >}}
27+
{{< person "RvM" >}}
28+
{{< person "MA" >}}
29+
</div>
30+
31+
# Collaborators
32+
33+
<div class="people-card-container">
34+
{{< person "CC" >}}
35+
{{< person "IC" >}}
36+
</div>
4337

4438
Your name is missing here! Learn more about [joining us]({{< relref "/contact/#join-us" >}}).
4539

data/people/CC.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
name = "Corinna Coupette"
2+
image = "cc.jpg"
3+
web = "https://www.coupette.io"
4+

data/people/IC.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
name = "Irene Cannistraci"
2+
image = "ic.jpg"
3+
web = "https://irene.cannistraci.dev"
4+
5+

layouts/shortcodes/person.html

Lines changed: 31 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,45 @@
1-
<div class="card">
1+
<div class="card-person">
22
{{ $person := .Get 0 }}
33
{{ $person := index .Site.Data.people $person }}
4-
5-
<div class="card-left">
64
<figure class="person">
75
<img src="{{ $person.image }}" width="180" alt="{{ $person.name }}" />
86
</figure>
9-
</div>
10-
11-
<div class="card-right">
127
<span class="card-name">{{ $person.name }}</span><br />
138
<span class="card-job">{{ $person.job }}</span>
14-
15-
<dl class="card-profiles">
9+
<ul class="card-icons">
1610
{{ with $person.github }}
17-
{{ $link := printf "https://github.com/%s" $person.github }}
18-
{{ partial "profile.html" (dict "name" "GitHub" "link" $link "text" $person.github) }}
11+
<li>
12+
<a href="https://github.com/{{ . }}">
13+
<img src="/github-mark.svg" alt="">
14+
</a>
15+
</li>
1916
{{end }}
17+
18+
{{ with $person.orcid }}
19+
<li>
20+
<a href="{{ . }}">
21+
<img src="/orchid-id.svg" alt="">
22+
</a>
23+
</li>
24+
{{end }}
2025

21-
{{ with $person.orcid }}
22-
{{ $link := printf "https://orcid.org/%s" $person.orcid }}
23-
{{ partial "profile.html" (dict "name" "ORCID" "link" $link "text" $person.orcid) }}
24-
{{end }}
26+
{{ with $person.twitter }}
27+
<li>
28+
<a href="https://twitter.com/{{ . }}">
29+
<img src="/logo-x-black.png" alt="">
30+
</a>
31+
</li>
32+
{{ end }}
33+
{{ with $person.web }}
34+
<li>
35+
<a href="{{ . }}">
36+
<img src="/home.png" alt="">
37+
</a>
38+
</li>
39+
{{ end }}
40+
41+
</ul>
2542

26-
{{ with $person.twitter }}
27-
{{ $link := printf "https://twitter.com/%s" $person.twitter }}
28-
{{ $name := printf "@%s" $person.twitter }}
29-
{{ partial "profile.html" (dict "name" "Twitter" "link" $link "text" $name) }}
30-
{{ end }}
3143

32-
{{ with $person.web }}
33-
{{ partial "profile.html" (dict "name" "Web" "link" $person.web "text" $person.web) }}
34-
{{ end }}
35-
</dl>
3644

37-
<div class="card-bio">
38-
{{ $person.bio | markdownify }}
39-
</div>
40-
</div>
4145
</div>

static/github-mark.svg

Lines changed: 1 addition & 0 deletions
Loading
312 Bytes
Binary file not shown.
212 Bytes
Loading
312 Bytes
Loading
212 Bytes
Loading
312 Bytes
Loading

0 commit comments

Comments
 (0)