Skip to content

Commit f467a4a

Browse files
committed
Add professional titles for team members in layout
1 parent eb89cbc commit f467a4a

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

content/team/_index.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,20 +30,28 @@ current_team_section:
3030
team_members:
3131
- image: /images/bing.png
3232
name: Bing Brunton
33+
post: Professor at University of Washington
3334
- image: /images/elizabeth.png
3435
name: Elizabeth Buffalo
36+
post: Professor at University of Washington
3537
- image: /images/anne.png
3638
name: Anne Churchland
39+
post: Professor at UCLA
3740
- image: /images/loren.png
3841
name: Loren Frank
42+
post: Professor at UCSF
3943
- image: /images/satrajit.png
4044
name: Satrajit Ghosh
45+
post: Principal Research Scientist at MIT
4146
- image: /images/adam-kepecs.png
4247
name: Adam Kepecs
48+
post: Professor at Washington University in St. Louis
4349
- image: /images/mala.png
4450
name: Mala Murthy
51+
post: Professor at Princeton University
4552
- image: /images/kris.png
4653
name: Kris Bouchard
54+
post: Staff Scientist at Lawrence Livermore National Laboratory
4755
alumni_section:
4856
enable: true
4957
alumni:
@@ -68,18 +76,24 @@ technical_team_section:
6876
team_members:
6977
- image: /images/alessio.png
7078
name: Alessio Buccino
79+
post: Researcher at Allen Institute for Neural Dynamics & Research Software Engineer at CatalystNeuro
7180
- image: /images/saskia.png
7281
name: Saskia de Vries
82+
post: Senior Scientist at Allen Institute for Neural Dynamics
7383
- image: /images/yaroslav.png
7484
name: Yaroslav Halchenko
85+
post: Research Associate Professor at Dartmouth College
7586
- image: /images/ryan-ly.png
7687
name: Ryan Ly
88+
post: Scientific Data Engineer at Berkeley Lab
7789
# - image: /images/lawrence-niu.png
7890
# name: Lawrence Niu
7991
- image: /images/kushal.png
8092
name: Kushal Bakshi
93+
post: Neuroscience Data Engineer II at DataJoint
8194
- image: /images/szonja-weigl.jpeg
8295
name: Anna (Szonja) Weigl
96+
post: Research Software Engineer at CatalystNeuro
8397
core_dev_section:
8498
pynwb_section:
8599
enable: true

layouts/team/list.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ <h3 class="inter-700 dark-900 text-40 pb-5">Current Membership of the Executive
5151
<div class="h-100 bg-white rounded-3 p-md-4 p-2 shadow-sm pb-md-3">
5252
<img src="{{ $element.image }}" alt="" class="img-fluid rounded-3">
5353
<h5 class="inter-700 text-20 dark-900 pt-4">{{ $element.name | markdownify }}</h5>
54+
{{ if $element.post }}<p class="inter-400 text-14 dark-900">{{ $element.post | markdownify }}</p>{{ end }}
5455
</div>
5556
</div>
5657
{{ end }}
@@ -126,6 +127,7 @@ <h3 class="inter-700 dark-900 text-40 pb-5">Current Membership of the Technical
126127
<div class="h-100 bg-white rounded-3 p-2 p-md-4 shadow-sm pb-md-3">
127128
<img src="{{ $p.image }}" alt="" class="img-fluid rounded-3">
128129
<h5 class="inter-700 text-20 dark-900 pt-4">{{ $p.name | markdownify }}</h5>
130+
{{ if $p.post }}<p class="inter-400 text-14 dark-900">{{ $p.post | markdownify }}</p>{{ end }}
129131
</div>
130132
</div>
131133
{{ end }}
@@ -161,7 +163,7 @@ <h2 class="inter-700 text-40 dark-900">Core Development Team</h2>
161163
<h3 class="inter-600 dark-900 text-36">PyNWB</h3>
162164
<div class="row gy-2 g-md-3 g-lg-5 pt-4">
163165
{{ range .team_members }}
164-
<div class="col-sm-6 col-md-4">
166+
<div class="col-6 col-sm-4 col-md-3">
165167
<div class="h-100 bg-white rounded-3 p-4 shadow-sm pb-2 d-flex flex-column justify-content-between">
166168
<div class="d-flex flex-column justify-content-center align-items-center">
167169
<img src="{{ .image }}" alt="" class="img-fluid rounded-3">
@@ -227,4 +229,4 @@ <h3 class="inter-700 text-40 dark-900">{{ .title | markdownify }}</h3>
227229
{{ end }}
228230
{{ end }}
229231
{{/* End Dev Community Section */}}
230-
{{ end }}
232+
{{ end }}

0 commit comments

Comments
 (0)