Skip to content

Commit 1245fdc

Browse files
committed
update leadership
1 parent 98fa11e commit 1245fdc

File tree

35 files changed

+95
-174
lines changed

35 files changed

+95
-174
lines changed

_data/leadership.yaml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Executors:
22
- name: Jay Miller
33
title: Executor
44
image: https://github.com/kjaymiller.png
5-
alt: photo of Jayj
5+
alt: photo of Jay
66

77
- name: Abigail Afi Gbadago
88
title: Executor (Africa)
@@ -20,25 +20,25 @@ Executors:
2020
title: Vice-Executor (North America)
2121
image: /assets/images/keanya.webp
2222

23-
Advisors:
23+
Leaders:
2424
- name: Damilola Oladele
2525
title: Documentation Lead
2626

2727
- name: Doreen Nangira
28-
title: Advisor, Code of Conduct Team Lead
29-
30-
- name: Benedict Koji Amofah
31-
title: Advisor
32-
33-
- name: Ronald Maravanyika
34-
title: Advisor
35-
36-
- name: Kudzayi Bamhare
37-
title: Advisor
28+
title: Code of Conduct Team Lead
3829

3930
- name: Sandra Ashipala
4031
title: Welcoming Team
4132

33+
Advisors:
34+
- Benedict Koji Amofah
35+
- Ronald Maravanyika
36+
- Kudzayi Bamhare
37+
- Kojo Idrissa
38+
- Carol Willing
39+
- Jeff Triplett
40+
- Dr. Kari L. Jordan
41+
4242
Council:
4343
- Dawn Wages
4444
- Sarah Abderemane

about.html renamed to _layouts/about.html

Lines changed: 28 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
1-
---
2-
layout: default
3-
lang: en
4-
title: About Us
5-
slug: about
6-
---
7-
8-
<section>
1+
{% extends 'default.html' %}
2+
{% block content %}
3+
<article>
94
<h1>About Black Python Devs</h1>
105

116
<p>Black Python Devs was created by its founder Jay Miller after seeing a trend of the same handful of Black developers speaking at major conferences, taking leadership positions, and dealing with the same challenges towards burnout.</p>
@@ -21,7 +16,7 @@ <h1>About Black Python Devs</h1>
2116
</p>
2217

2318
<p>At PyCon US 2023 after an open space a Discord server called Black Python Devs was created where the community could continue to encourage this momentum and support one another.</p>
24-
</section>
19+
</article>
2520
<section>
2621
<div class="grid">
2722
<article>
@@ -41,13 +36,12 @@ <h2>The Goal of Black Python Devs</h2>
4136
</article>
4237
</div>
4338
</section>
44-
<section>
4539
<h3>Leadership Team</h3>
4640

4741
<div class="grid" style="margin: auto; text-align: center">
48-
{% for leader in site.data.leadership.Executors %}
42+
{% for leader in data['Executors'] %}
4943

50-
<article class="leadership-photo-container">
44+
<article class="leadership-photo-container">
5145
{% if leader.image %}
5246
<img class="leadership-photo" alt="photo of {{leader.name}}" src="{{ leader.image }}" />
5347
{% endif %}
@@ -60,10 +54,10 @@ <h3>Leadership Team</h3>
6054
{% endfor %}
6155
</div>
6256

63-
<h3>Team Leads & Advisors</h3>
57+
<h3>Team Leads</h3>
6458

6559
<div class="grid" style="margin: auto; text-align: center">
66-
{% for leader in site.data.leadership.Advisors %}
60+
{% for leader in data['Leaders'] %}
6761

6862
<article class="leadership-photo-container">
6963
{% if leader.image %}
@@ -74,20 +68,37 @@ <h3>Team Leads & Advisors</h3>
7468
{{ leader.title }}
7569
</p>
7670
</article>
77-
7871
{% endfor %}
7972
</div>
8073

74+
<h3>Advisors</h3>
75+
<article class="grid">
76+
{% for group in (data.Advisors | sort | slice(3)) %}
77+
<div>
78+
<ul>
79+
{% for leader in group %}
80+
<li><strong>{{ leader }} </strong><br /></li>
81+
{% endfor %}
82+
</ul>
83+
</div>
84+
{% endfor %}
85+
</article>
86+
8187
<h3>BPD Leadership Council</h3>
8288

8389
<article>
8490
<p>We also vet our actions through our Black Python Devs Leadership Council made up of members who serve as Python Community leaders on a local, regional, or global scale.</p>
91+
<div class="grid">
92+
{% for group in data.Council | sort | slice(3) %}
8593
<div>
86-
{% assign council = site.data.leadership.Council | sort %} {% for leader in council %}
8794
<ul>
95+
{% for leader in group %}
8896
<li><strong>{{ leader }}</strong></li>
89-
</ul>
9097
{% endfor %}
98+
</ul>
99+
</div>
100+
{% endfor %}
91101
</div>
92102
</article>
93103
</section>
104+
{% endblock %}

_layouts/blog-list.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{% extends "default.html" %}
2+
{% block content %}
3+
<section>
4+
<h1>Blog Posts</h1>
5+
{% for page in pages %}
6+
<article class="grid">
7+
{% if page.featured_image %}<div><img class="featured-image" src="{{page.featured_image}}" /></div>{% endif %}
8+
<div>
9+
<h2><a href="{{ page }}.html">
10+
{{ page.title }}
11+
</a></h2>
12+
{% if page.description %}
13+
<p>{{page.description}}</p>
14+
{% endif %}
15+
<small>{{page.author}} - <strong>{{page.date}}</strong></small>
16+
</div>
17+
</article>
18+
{% endfor %}
19+
</section>
20+
{% endblock %}

_layouts/event-list.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{% extends "default.html" %}
22
{% block content %}
33
<section>
4-
<h1>Blog Posts<h1>
4+
<h1>Blog Posts</h1>
55
{% for page in pages %}
66
<article>
77
<h2><a href="{{ page }}.html">
88
{{ page.title }}
99
</a></h2>
10-
<small>{{page.author}}</small>
10+
<small>{{page.author}} {{page.date}}</small>
1111
</article>
1212
{% endfor %}
1313
</section>

_posts/2023-10-20-djangoconus.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
date: 2023-10-20 08:00:00
2+
date: 2023-10-20
33
description: Join us for a behind-the-scenes look at DjangoCon US 2023, where diversity
44
and inclusion came together to shape a powerful community of Python developers.
55
lang: en

_posts/2023-11-11-what-is-the-us-conference-city-diversity-metric.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
author: Jay Miller
3-
date: 2023-11-11 08:00:00
3+
date: 2023-11-11
44
description: Discover how the US Conference Diversity Metric can inform your event's
55
location and create a more inclusive experience for attendees, with expert analysis
66
from Jay Miller.

_posts/2023-11-13-black-python-devs-represent-in-dsf-elections.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
author: Jay Miller
3-
date: 2023-11-13 08:00:00
3+
date: 2023-11-13
44
description: Find out how the growing presence of Black Python Developers is shaping
55
the future of diversity in the tech industry through the DSF Elections.
66
lang: en

_posts/2023-12-14-dawn-wages-sarah-abderemane-and-djangonaut-space-awarded-the-malcolm-tredinnick-memorial-prize.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
author: Jay Miller
3-
date: 2023-12-14 08:00:00
3+
date: 2023-12-14
44
description: Discover how the innovative team at Djangonaut Space is making a lasting
55
impact on the Django community with sustainable initiatives and groundbreaking projects.
66
lang: en

_posts/2023-12-14-sarah-abderemane-selected-to-the-django-software-foundation-board.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
author: Jay Miller
3-
date: 2023-12-14 08:00:00
3+
date: 2023-12-14
44
description: Discover how Sarah Abderemane's selection to the Django Software Foundation
55
Board of Directors is a significant milestone for the thriving Black Python Devs
66
community.

_posts/2024-01-12-black-python-devs-is-sponsoring-pytexas.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
author: Jay Miller
3-
date: 2024-01-12 08:00:00
3+
date: 2024-01-12
44
description: Discover how Black Python Devs is supporting PyTexas, a premier regional
55
Python conference in Austin, TX, and learn about opportunities to attend for free
66
through ticket giveaways and speaker selection.

_posts/2024-01-25-marlene-mhangami-recognized-as-python-fellow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
date: 2024-01-25 08:00:00
2+
date: 2024-01-25
33
description: Meet Marlene Mhangami, a trailblazing leader in the Python community
44
recognized for her exceptional contributions as PSF Chair and DEI Working Group
55
member, now highlighted as a Q3 2023 Python Fellow.

_posts/2024-03-13-pycon-us-announcement.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
date: 2024-03-13 08:00:00
2+
date: 2024-03-13
33
description: Explore how Black Python Devs is shaping the future of the Python community
44
through a range of events and activities at PyCon US.
55
lang: en

_posts/2024-05-03-pycon_ng_2024.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
date: 2024-05-03 08:00:00
2+
date: 2024-05-03
33
description: Discover how Black Python Devs is empowering the next generation of developers
44
through its partnership with PyCon Nigeria 2024 and learn about exclusive opportunities
55
for students.

_posts/2024-05-17-non-profit-announcement.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
date: 2024-05-16 08:00:00
2+
date: 2024-05-16
33
description: Discover how a historic partnership between two influential organizations
44
is revolutionizing tech diversity and innovation in the open-source world.
55
featured_image: /assets/images/BPD_STACKED_featured.png

_posts/2024-05-22-why-we-use-colored-and-coloured.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
date: 2024-05-22 08:00:00
2+
date: 2024-05-22
33
description: Join us as we explore a nuanced approach to inclusive language, examining
44
the complexities of terms like "Black", "Colored", and "coloured" in describing
55
our community members.

_posts/2024-05-25-abigail-mesrenyame-dogbe-wins-inaugural-outstanding-pylady-award.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
author: Anotida Expected Msiiwa
3-
date: 2024-01-25 08:00:00
3+
date: 2024-01-25
44
description: Meet Abigail Mesrenyame Dogbe, a dedicated member of Black Python Devs
55
and recipient of the Inaugural Outstanding PyLady award, whose inspiring contributions
66
to the open-source community are empowering women in STEM.

_posts/2024-07-03-black-python-devs-running-for-2024-PSF-Board.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
author: Anotida Expected Msiiwa
3-
date: 2024-07-03 08:00:00
3+
date: 2024-07-03
44
description: Join us in learning about four exceptional Black Python developers who
55
are shaping the future of the Python community and running for a crucial role on
66
the Python Software Foundation Board.

_posts/2024-07-20-black-python-devs-partners-with-pyohio.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
author: Anotida Expected Msiiwa
3-
date: 2024-07-20 08:00:00
3+
date: 2024-07-20
44
description: Discover how Black Python Devs is teaming up with PyOhio to create a
55
more inclusive and diverse community, supporting and amplifying the voices of Black
66
developers in Ohio and beyond.

_posts/2024-08-15-python-morsels-black-python-devs-high-five.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
author: Jay Miller
3-
date: 2024-08-15 08:00:00
3+
date: 2024-08-15
44
description: Discover how to kickstart your Python skills with a comprehensive 10-week
55
course, featuring daily exercises, community support, and real-world applications
66
- now available with an exclusive $30 off offer.

_posts/2024-08-16-talkpython-training-partnership.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
author: Jay Miller
3-
date: 2024-08-16 08:00:00
3+
date: 2024-08-16
44
description: Learn how TalkPython Training's new partnership with Black Python Devs
55
is driving greater diversity and benefiting learners through a unique opportunity
66
to support both your education and the community.

_posts/2024-09-09-oreilly-partnership.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
author: Jay Miller
3-
date: 2024-09-09 08:00:00
3+
date: 2024-09-09
44
description: Get the inside scoop on O'Reilly Media's innovative partnership with
55
Black Python Devs and discover how it's revolutionizing access to high-quality learning
66
resources for the Black Python community.

_posts/2024-10-13-black-python-devs-ghana-event.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
author: Abigail Afi Gbadago
3-
date: 2024-10-13 08:00:00
3+
date: 2024-10-13
44
description: Discover how Ghanaian developers turned their passion for coding into
55
a career with inspiring stories of perseverance and innovation in Python.
66
featured_image: /assets/images/bpd_ghana_connect1.webp

_posts/2024-10-19-black-python-devs-leadership-summit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
author: Abigail Afi Gbadago
3-
date: 2024-10-19 08:00:00
3+
date: 2024-10-19
44
description: Join Abigail Afi Gbadago and other leaders at the highly successful Black
55
Python Devs Leadership Summit as they shared insights on succession planning, mental
66
health, and leadership skills in a day of engaging talks and interactive sessions.

_posts/2024-10-25-pycon-ug-2024.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
author: Tobias Thomas (Toe•bias HT)
3-
date: 2024-10-25 08:00:00
3+
date: 2024-10-25
44
description: Discover the inspiring stories of Uganda's next generation African Python
55
developers who attended PyconUG 2024 and learn about their experiences in a vibrant
66
tech community.

_posts/2024-10-29-dsf-candidates-2025.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
author: Jay Miller
3-
date: 2024-10-29 08:00:00
3+
date: 2024-10-29
44
description: Discover how a new generation of Black Python Developers is shaping the
55
future of Django and the global tech community, and learn about their inspiring
66
stories and impact on the world.

_posts/2024-11-02-black-python-devs-pyho-2024.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
author: Kafui Alordo
3-
date: 2024-11-02 08:00:00
3+
date: 2024-11-02
44
description: Discover how Black Python Devs is redefining the future of Python's open
55
source ecosystem by creating a safe and inclusive space for underrepresented developers.
66
featured_image: /assets/images/bpd_pyho_2024.jpg

_posts/2024-12-02-typefully-support-bpd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
date: 2024-12-02 08:00:00
2+
date: 2024-12-02
33
description: We're happy to announce that Typefully is sponsoring Black Python Devs.
44
lang: en
55
layout: post

_posts/2024-12-16-bpd-announces-regional-executors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
date: 2024-12-16 08:00:00
2+
date: 2024-12-16
33
description: Black Python Devs is announcing a major change to leadership at the top
44
level.
55
lang: en

_posts/2025-01-08-2024-recap.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: 2024 Recap and What to Expect in 2025
33
author: Jay Miller
44
description: Our executor gives a brief recap of 2024 and a glimpse into the global goals for Black Python Devs.
5-
date: 2025-01-08 08:00:00
5+
date: 2025-01-08
66
layout: post
77
lang: en
88
---

_posts/2025-04-26-lessons-learned-from-our-leaders.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Reflecting on the last two years with our BPD Leaders
33
author: Jay Miller
44
description:
5-
date: 2025-04-26 08:00:00
5+
date: 2025-04-26
66
layout: post
77
lang: en
88
---

_posts/2025-04-28-baovola-marie-anna-added-to-bpd-council.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: BAOVOLA Marie Anna Added to BPD Council
3-
date: 2025-04-28 08:00:00
3+
date: 2025-04-28
44
author: Jay Miller
55
description: The BPD Council has recognized the work of BAOVOLA Marie Anna and invited her to join the Council.
66
featured_image: /assets/images/baovola-jay-pg-day-chi-2025.webp

0 commit comments

Comments
 (0)