diff --git a/site/_includes/people_cards.html b/site/_includes/people_cards.html new file mode 100644 index 0000000..100545c --- /dev/null +++ b/site/_includes/people_cards.html @@ -0,0 +1,24 @@ +
+ + +{% assign filtered_people = site.people | where_exp: 'person', "include.people contains person.short_name" %} + + {% for person in filtered_people %} + {% if person.center %} + {% assign object_pos = person.center %} + {% else %} + {% assign object_pos = "0 0" %} + {% endif %} + +

+ {{ person.name }} +

+ + {% if person.job %} + {{ person.job }} + {% endif %} +
+ {% endfor %} +
+ +
diff --git a/site/_people/balzani.md b/site/_people/balzani.md index 1e67da3..12c8a63 100644 --- a/site/_people/balzani.md +++ b/site/_people/balzani.md @@ -3,5 +3,6 @@ name: Edoardo Balzani short_name: balzani external_url: https://www.simonsfoundation.org/people/edoardo-balzani/ picture: /assets/edoardo.jpg +job: Associate Research Scientist, CCN --- Edoardo is the one of the principal developers of Nemos, a package for statistical modeling of neural activity. He earned his Ph.D. in Neuroscience from the Italian Institute of Technology in Genova, under the guidance of Valter Tucci. Before joining the Flatiron institute as a data scientist, he worked as a postdoc in Cristina Savin's lab at NYU's Center for Neural Science where he developed statistical methods for the analysis of neural spike trains during naturalistic behavior. diff --git a/site/_people/broderick.md b/site/_people/broderick.md index 95afbc8..f4799d8 100644 --- a/site/_people/broderick.md +++ b/site/_people/broderick.md @@ -3,5 +3,6 @@ name: Billy Broderick short_name: broderick external_url: https://wfbroderick.com picture: /assets/billy.jpg +job: Associate Research Scientist, CCN --- Billy Broderick received his Ph.D. from NYU's Center for Neural Science, where he was advised by Eero Simoncelli and Jon Winawer. During his Ph.D., he studied how vision changes across the visual field using fMRI, psychophysics, and computational models. Before that, he worked as a research assistant at Duke University, spent a year at South China Normal University in Guangzhou, China as a [Luce Scholar](http://www.hluce.org/lsprogram.aspx), and got his B.A. in neuroscience and mathematics at Oberlin College diff --git a/site/_people/lewis.md b/site/_people/lewis.md index df3d301..9a5d2a3 100644 --- a/site/_people/lewis.md +++ b/site/_people/lewis.md @@ -2,5 +2,7 @@ name: Caitlin Lewis short_name: lewis picture: /assets/caitlin.png +center: 50% 0 +job: PhD student, Duke University --- Caitlin received her B.S. in Computer Science and Statistics from UNC Chapel Hill. During this time she worked as an Undergraduate Research Assistant in the lab of Dr. Adam Hantman - where she helped to develop software tools for calcium imaging analysis and automated behavioral classification. She is also the co-developer of fastplotlib, a cutting-edge scientific visualization library. Caitlin will begin pursuing her PhD in Electrical and Computer Engineering this coming Fall at Duke University in the lab of Dr. John Pearson. diff --git a/site/_people/schomburg.md b/site/_people/schomburg.md new file mode 100644 index 0000000..7662d3a --- /dev/null +++ b/site/_people/schomburg.md @@ -0,0 +1,8 @@ +--- +name: Erik Schomburg +short_name: schomburg +picture: /assets/schomburg.avif +job: Research Scientist, CCN +--- + + diff --git a/site/_people/skromne-carrasco.md b/site/_people/skromne-carrasco.md new file mode 100644 index 0000000..98e82a3 --- /dev/null +++ b/site/_people/skromne-carrasco.md @@ -0,0 +1,10 @@ +--- +name: Sofia Skromne Carrasco +short_name: skromne-carrasco +picture: /assets/skromne-carrasco.jpeg +center: 0 30% +job: PhD candidate, McGill University +--- + + + diff --git a/site/_people/tanelus.md b/site/_people/tanelus.md new file mode 100644 index 0000000..6b235a5 --- /dev/null +++ b/site/_people/tanelus.md @@ -0,0 +1,7 @@ +--- +name: Aramis Tanelus +short_name: tanelus +picture: /assets/Tanelus_Aramis-scaled.avif +job: Research Associate, CCN +--- + diff --git a/site/_people/venditto.md b/site/_people/venditto.md index 981a4df..d0bf239 100644 --- a/site/_people/venditto.md +++ b/site/_people/venditto.md @@ -2,5 +2,6 @@ short_name: venditto name: Sarah Jo Venditto picture: /assets/sjvenditto_headshot.jpeg +job: Associate Research Scientist, CCN --- Sarah Jo supports and develops open-source software for the center and with the Statistical Analysis of Neural Data group. She received her Ph.D. in Neuroscience from Princeton University working with Carlos Brody and Nathaniel Daw, where she studied neural mechanisms of cognition in rodents using experimental methods, statistical analysis, and computational models. Prior to her Ph.D., she worked as a research assistant at Indiana University and got her B.S. in Physics with a minor in Mathematics from Bethel University in Minnesota. diff --git a/site/_people/viejo.md b/site/_people/viejo.md index 631a4a2..cf23674 100644 --- a/site/_people/viejo.md +++ b/site/_people/viejo.md @@ -3,5 +3,6 @@ short_name: viejo name: Guillaume Viejo external_url: https://www.simonsfoundation.org/people/guillaume-viejo/ picture: /assets/guillaume.jpg +job: Associate Research Scientist, CCN --- Guillaume Viejo joined the Center for Computational Neuroscience as a data scientist, where he focuses on developing software for analyzing neurophysiological data. He holds a Ph.D. in computational neuroscience from the Institute of Intelligent Systems and Robotics at the Pierre and Marie Curie University in Paris, France. After completing his doctorate, Guillaume worked as a postdoctoral fellow at the Montreal Neurological Institute, where he studied the head-direction system (also known as the brain’s compass) in rodents. diff --git a/site/assets/Tanelus_Aramis-scaled.avif b/site/assets/Tanelus_Aramis-scaled.avif new file mode 100644 index 0000000..ba5f5dc Binary files /dev/null and b/site/assets/Tanelus_Aramis-scaled.avif differ diff --git a/site/assets/main2.css b/site/assets/main2.css index bc1e6f2..9da89f4 100644 --- a/site/assets/main2.css +++ b/site/assets/main2.css @@ -395,6 +395,32 @@ project-list { } } +people-list { + display: grid; + grid-gap: 1rem; +} + +@media (min-width: 800px) { + people-list { + grid-template-columns: repeat(3, 1fr); + } +} + +people-card { + display: flex; + height: min-content; + background-color: white; + flex-direction: column; + border: 1px solid var(--grey-color); + padding: 2rem; + border-radius: 1rem; + font-size: 0.9rem; + line-height: 1.2; + text-align: center; +} +people-card > img { +margin: 0 0 10px 0; +} project-card { display: flex; height: min-content; diff --git a/site/assets/schomburg.avif b/site/assets/schomburg.avif new file mode 100644 index 0000000..05b3b80 Binary files /dev/null and b/site/assets/schomburg.avif differ diff --git a/site/assets/skromne-carrasco.jpeg b/site/assets/skromne-carrasco.jpeg new file mode 100644 index 0000000..d82f789 Binary files /dev/null and b/site/assets/skromne-carrasco.jpeg differ diff --git a/site/workshops/jan-2025/index.md b/site/workshops/jan-2025/index.md index d5f205b..77b29df 100644 --- a/site/workshops/jan-2025/index.md +++ b/site/workshops/jan-2025/index.md @@ -90,10 +90,5 @@ To get a sense of the material we will cover, see our [workshop from FENS 2024]( ## Speakers and TAs -- Edoardo Balzani -- Billy Broderick -- Guillaume Viejo -- Aramis Tanelus -- Erik Schomburg -- Sofia Skromne Carrasco -- Sarah Jo Venditto +{% assign speakers = "balzani,broderick,venditto,viejo,lewis,schomburg,skromne-carrasco,tanelus" | split: "," %} +{% include people_cards.html people=speakers %}