Skip to content

Commit b13b6b7

Browse files
authored
update about page (BlackPythonDevs#635)
1 parent b7e5103 commit b13b6b7

File tree

7 files changed

+136
-102
lines changed

7 files changed

+136
-102
lines changed

_data/leadership.yaml

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
Executors:
2+
- name: Jay Miller
3+
title: Executor
4+
image: https://github.com/kjaymiller.png
5+
alt: photo of Jayj
6+
7+
- name: Abigail Afi Gbadago
8+
title: Executor (Africa)
9+
image: /assets/images/afi.webp
10+
11+
- name: Emmanuel Ugwu
12+
title: Vice-Executor (Africa)
13+
image: /assets/images/nuel.webp
14+
15+
- name: Lazuich Ford
16+
title: Executor (North America)
17+
image: /assets/images/laz.webp
18+
19+
- name: Keanya Phelps
20+
title: Vice-Executor (North America)
21+
image: /assets/images/keanya.webp
22+
23+
Advisors:
24+
- name: Damilola Oladele
25+
title: Documentation Lead
26+
27+
- name: Doreen Nangira
28+
title: Advisor, Code of Conduct Team Lead
29+
30+
- name: Benedict Koji Amoah
31+
title: Advisor
32+
33+
- name: Ronald Maravanyika
34+
title: Advisor
35+
36+
- name: Kudzayi Bamhare
37+
title: Advisor
38+
39+
- name: Sandra Ashipala
40+
title: Welcoming Team
41+
42+
Council: [Dawn Wages, Sarah Abderemane, Abigail Mesyenrame Dogbe, Velda Kiara, Kojo Idrissa, Aisha Bello, Brayan Kai, Chris Achinga, Denny Perez, Felipe Quieroz, Marlene Mhangami, Monica Oyugi, Ngazetungue Muheue, Steve Yonkeu]

_data/regional_leadership.yml

-9
This file was deleted.

about.html

+92
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
---
2+
layout: default
3+
lang: en
4+
title: About Us
5+
---
6+
7+
<section>
8+
<h1>About Black Python Devs</h1>
9+
10+
<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>
11+
12+
<p>
13+
After attending PyCon US in 2022, he noticed they were able to physically count the number of Black developers that attended in person and that they made up LESS THAN 0.01% of the total attendees. Jay began asking speakers Black Pythonistas if
14+
they considered connecting with the community and the almost unanimous response was "Why would I do that?". After some encouragement one person was convinced to give a lightning talk.
15+
</p>
16+
17+
<p>
18+
In the following year, we saw that person get more involved in their local user group and make connections that helped lead to forward progress in their career development.That same person was accepted to speak at PyCon US in 2023. With much push
19+
from community in Africa and Brazil, we saw the total number of Black attendees in 2023 triple in number.
20+
</p>
21+
22+
<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>
23+
</section>
24+
<section>
25+
<div class="grid">
26+
<article>
27+
<h2>Mission Statement</h2>
28+
<p>Extending the ecosystem of Python Communities to Black and Colo(u)red Communities around the world.</p>
29+
</article>
30+
<article>
31+
<h2>The Goal of Black Python Devs</h2>
32+
33+
<p>Our goal is to become the largest community of Black Python Developers in the world and establish our community as a source for diverse leaders in the greater Python community. We aim to:</p>
34+
35+
<ul>
36+
<li>Establish guidance, mentorship, and career support for Black Pythonistas around the world.</li>
37+
<li>Create opportunities for the Python community to invest in local communities of Black Python Devs members.</li>
38+
<li>Increase participation of Black Python Devs members in existing Python community programs, events, and initiatives.</li>
39+
</ul>
40+
</article>
41+
</div>
42+
</section>
43+
<section>
44+
<h3>Leadership Team</h3>
45+
46+
<div class="grid" style="margin: auto; text-align: center">
47+
{% for leader in site.data.leadership.Executors %}
48+
49+
<article class="leadership-photo-container">
50+
{% if leader.image %}
51+
<img class="leadership-photo" alt="photo of {{leader.name}}" src="{{ leader.image }}" />
52+
{% endif %}
53+
<p>
54+
<strong>{{ leader.name }}</strong><br />
55+
{{ leader.title }}
56+
</p>
57+
</article>
58+
59+
{% endfor %}
60+
</div>
61+
62+
<h3>Team Leads & Advisors</h3>
63+
64+
<div class="grid" style="margin: auto; text-align: center">
65+
{% for leader in site.data.leadership.Advisors %}
66+
67+
<article class="leadership-photo-container">
68+
{% if leader.image %}
69+
<img class="leadership-photo" alt="photo of {{leader.name}}" src="{{ leader.image }}" />
70+
{% endif %}
71+
<p>
72+
<strong>{{ leader.name }}</strong><br />
73+
{{ leader.title }}
74+
</p>
75+
</article>
76+
77+
{% endfor %}
78+
</div>
79+
80+
<h3>BPD Leadership Council</h3>
81+
82+
<article>
83+
<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>
84+
<div>
85+
{% assign council = site.data.leadership.Council | sort %} {% for leader in council | sort %}
86+
<ul>
87+
<li><strong>{{ leader }}</strong></li>
88+
</ul>
89+
{% endfor %}
90+
</div>
91+
</article>
92+
</section>

about.md

-81
This file was deleted.

assets/css/bpd.css

+2-12
Original file line numberDiff line numberDiff line change
@@ -437,20 +437,10 @@ footer {
437437
font-style: italic;
438438
}
439439

440-
.leadership-photo-container {
441-
display: flex;
442-
flex-direction: column;
443-
}
444-
445-
.leadership-photo-container > p {
446-
text-align: center;
447-
}
448-
449440
img.leadership-photo {
450-
margin: 0 1rem;
451441
border-radius: 1em;
452-
width: 8rem;
453-
height: 8rem;
442+
width: 5rem;
443+
height: 5rem;
454444
}
455445

456446
.post-title > h3 {

assets/images/keanya.webp

137 KB
Binary file not shown.

assets/images/nuel.webp

58.4 KB
Binary file not shown.

0 commit comments

Comments
 (0)