Skip to content

Commit 2f00cbb

Browse files
committed
Add Executive council and ssc to about page
1 parent f8c028d commit 2f00cbb

File tree

1 file changed

+120
-0
lines changed

1 file changed

+120
-0
lines changed

about.html

Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,78 @@
195195
linkedin: https://linkedin.com/in/erik-sundell/
196196
twitter_handle: e_Sundell
197197

198+
executive_council:
199+
- name: Afshin Darian
200+
photo: AfshinDarian.jpeg
201+
affiliation: QuantStack
202+
gh_handle: afshin
203+
- name: Brian Granger
204+
photo: BrianGranger.jpeg
205+
affiliation: Amazon Web Services
206+
gh_handle: ellisonbg
207+
- name: Fernando Pérez
208+
photo: FernandoPerez.jpeg
209+
affiliation: UC Berkeley
210+
gh_handle: fperez
211+
212+
software_steering_council:
213+
- name: Eric Charles
214+
photo:
215+
twitter_handle:
216+
gh_handle: echarles
217+
subproject: Jupyter Notebook
218+
- name: Frédéric Collonval
219+
photo: Frederic_Collonval.jpg
220+
gh_handle: fcollonval
221+
linkedin: https://www.linkedin.com/in/frederic-collonval-41147955/
222+
subproject: JupyterLab
223+
- name: Sylvain Corlay
224+
photo: SylvainCorlay.png
225+
affiliation: QuantStack
226+
gh_handle: sylvaincorlay
227+
subproject: Voilà
228+
- name: Itay Dafna
229+
photo:
230+
twitter_handle:
231+
gh_handle: ibdafna
232+
subproject: Jupyter Widgets
233+
- name: Paul Ivanov
234+
photo: PaulIvanov.jpeg
235+
affiliation: Noteable
236+
gh_handle: ivanov
237+
subproject: Jupyter Foundations
238+
- name: Johan Mabille
239+
photo: Johan_Mabille.jpg
240+
twitter_handle: JohanMabille
241+
gh_handle: JohanMabille
242+
subproject: Jupyter Kernels
243+
- name: Isabela Presedo-Floyd
244+
photo: Isabela_Presedo-Floyd.jpg
245+
gh_handle: isabela-pf
246+
twitter_handle: isabelapf2
247+
linkedin: https://www.linkedin.com/in/isabela-presedo-floyd-32b99a160/
248+
subproject: Jupyter Accessibility
249+
- name: Min Ragan-Kelley
250+
photo: MinRaganKelley.jpeg
251+
affiliation: Simula Research Lab
252+
gh_handle: minrk
253+
subproject: JupyterHub and Binder
254+
- name: Zach Sailer
255+
photo: Zach_Sailer.jpg
256+
gh_handle: Zsailer
257+
linkedin: https://linkedin.com/in/zach-sailer-8a1472151/
258+
twitter_handle: zrsailer
259+
subproject: Jupyter Server
260+
- name: Rick Wagner
261+
photo:
262+
twitter_handle:
263+
gh_handle: rpwagner
264+
subproject: Jupyter Security
265+
- name: Carol Willing
266+
photo: CarolWilling.jpeg
267+
affiliation: Noteable
268+
gh_handle: willingc
269+
subproject: Jupyter Standards
198270

199271
retired_steering:
200272
- name: Damian Avila
@@ -406,6 +478,54 @@
406478
{% endfor %}
407479
</div>
408480

481+
{% include hr.html %}
482+
483+
<!-- Executive Council -->
484+
<div class="content content--copy">
485+
<h2 class="text-center">Executive Council Members</h2>
486+
</div>
487+
488+
<div class="content content--wide">
489+
<div class="biocard-wrapper">
490+
{% for bio in page.executive_council %}
491+
{% include biocard.html
492+
name=bio.name
493+
photo=bio.photo
494+
affiliation=bio.affiliation
495+
personal=bio.personal
496+
gh_handle=bio.gh_handle
497+
linkedin=bio.linkedin
498+
twitter_handle=bio.twitter_handle
499+
%}
500+
{% endfor %}
501+
</div>
502+
</div>
503+
504+
{% include hr.html %}
505+
506+
<!-- Software Steering Council -->
507+
<div class="content content--copy">
508+
<h2 class="text-center">Software Steering Council Members</h2>
509+
</div>
510+
511+
<div class="content content--wide">
512+
<div class="biocard-wrapper">
513+
{% for bio in page.software_steering_council %}
514+
{% include biocard.html
515+
name=bio.name
516+
photo=bio.photo
517+
affiliation=bio.affiliation
518+
personal=bio.personal
519+
gh_handle=bio.gh_handle
520+
linkedin=bio.linkedin
521+
twitter_handle=bio.twitter_handle
522+
%}
523+
<div class="ssc-subproject">Representing {{ bio.subproject }}</div>
524+
{% endfor %}
525+
</div>
526+
</div>
527+
528+
409529
{% include hr.html %}
410530

411531
<!-- DISTINGUISHED CONTRIBUTORS -->

0 commit comments

Comments
 (0)