Skip to content

Commit 445870c

Browse files
committed
update people's alumni section
1 parent d59323c commit 445870c

2 files changed

Lines changed: 41 additions & 33 deletions

File tree

_data/people.yml

Lines changed: 18 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,6 @@ research_fellows:
4646
His work combines behavioral experiments with computational modeling to
4747
understand how the brain maintains and manipulates information.
4848
49-
- name: "George Dimitriadis"
50-
title: "Joint Gatsby Unit/Sainsbury Wellcome Centre Research Fellow"
51-
photo: null
52-
description: >-
53-
George develops computational tools and experimental pipelines for
54-
neuroscience research. He works on the Heron knowledge graph editor and
55-
other software tools to streamline experimental workflows.
56-
5749
- name: "Dammy Onih"
5850
title: "Research Fellow"
5951
photo: "dammy.jpg"
@@ -62,22 +54,8 @@ research_fellows:
6254
imaging techniques. Her research focuses on understanding how neural
6355
circuits adapt and change during learning processes.
6456
65-
- name: "Peter Vincent"
66-
title: "Research Fellow"
67-
photo: "peter_vincent.jpg"
68-
description: >-
69-
Peter works on developing novel experimental tools and techniques for
70-
neuroscience research. He contributes to projects like Zapit, an
71-
open-source photostimulation system for neural circuit manipulation.
7257
7358
phd_students:
74-
- name: "Elena Menichini"
75-
title: "PhD Student, Wellcome Neuroscience UCL"
76-
photo: null
77-
description: >-
78-
Elena studies cross-species adaptations to sensory statistics in
79-
categorization behavior. Her research compares how humans, rats, and mice
80-
show species-specific adaptations to environmental regularities.
8159

8260
- name: "Quentin Pajot-Moric"
8361
title: "PhD Student, Optical Biology"
@@ -87,13 +65,6 @@ phd_students:
8765
research. He contributes to projects involving photostimulation and
8866
imaging techniques for studying neural circuits.
8967
90-
- name: "Ella Svahn"
91-
title: "PhD Student, Optical Biology"
92-
photo: "ella_svahn_low_res_2.jpg"
93-
description: >-
94-
Ella focuses on developing computational tools and experimental pipelines
95-
for neuroscience research. She works on the Heron knowledge graph editor
96-
and other software tools to improve experimental workflows.
9768
9869
research_technicians:
9970
- name: "Rebecca Bell"
@@ -144,3 +115,21 @@ research_assistants:
144115
Audra provides research support for experimental work and data analysis.
145116
She assists with behavioral experiments and contributes to various
146117
research projects in the lab.
118+
119+
alumni:
120+
121+
- name: "Peter Vincent"
122+
title: "Research Fellow"
123+
photo: "peter_vincent.jpg"
124+
125+
- name: "Ella Svahn"
126+
title: "PhD Student, Optical Biology"
127+
photo: "ella_svahn_low_res_2.jpg"
128+
129+
- name: "Elena Menichini"
130+
title: "PhD Student, Wellcome Neuroscience UCL"
131+
photo: null
132+
133+
- name: "George Dimitriadis"
134+
title: "Joint Gatsby Unit/Sainsbury Wellcome Centre Research Fellow"
135+
photo: null

people/index.md

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -141,10 +141,29 @@ description: "People at LIM Lab (Learning, Inference & Memory), Athena Akrami's
141141
{% endfor %}
142142
</div>
143143
</div>
144+
145+
<div class="members-section">
146+
<h3>Alumni</h3>
147+
<div class="members-grid">
148+
{% for person in site.data.people.alumni %}
149+
<div class="member-card">
150+
<div class="member-photo">
151+
{% if person.photo %}
152+
<img src="{{ '/assets/img/' | append: person.photo | relative_url }}" alt="{{ person.name }}" class="member-image">
153+
{% else %}
154+
<div class="member-placeholder">No Photo</div>
155+
{% endif %}
156+
</div>
157+
<div class="member-info">
158+
<h4>{{ person.name }}</h4>
159+
<p class="member-title">{{ person.title }}</p>
160+
<div class="member-description">{{ person.description | markdownify }}</div>
161+
</div>
162+
</div>
163+
{% endfor %}
164+
</div>
165+
</div>
144166
</section>
145167

146-
<section class="alumni">
147-
<h2>Alumni</h2>
148-
<p>Information about former lab members will be updated here as the lab grows.</p>
149-
</section>
168+
150169
</div>

0 commit comments

Comments
 (0)