Skip to content

Commit f9339ec

Browse files
refactor leadership model with the new leadership model style (#614)
* refactor leadership model with the new leadership model style * refactor leadership model with the new leadership model style * refactor leadership model with the new leadership model style * Update _data/global_leadership.yml * pre-commit --------- Co-authored-by: Jay Miller <[email protected]>
1 parent 0c60970 commit f9339ec

File tree

3 files changed

+30
-12
lines changed

3 files changed

+30
-12
lines changed

_data/global_leadership.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
- name: Jay Miller
2+
title: Executor
3+
image: https://github.com/kjaymiller.png
4+
alt: photo of Jay

_data/regional_leadership.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
- name: Abigail "Afi" Gbadago
2+
title: Executor(Africa)
3+
image: /assets/images/afi.webp
4+
alt: photo of Afi
5+
6+
- name: Lazuich Ford
7+
title: Executor(North America)
8+
image: /assets/images/laz.webp
9+
alt: photo of Lazuich

about.md

Lines changed: 17 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -48,27 +48,32 @@ Here is a look at our current initiatives? Select to learn more.
4848
</article>
4949
</div>
5050

51-
## Leadership Team
51+
### Global Leadership Team
5252

5353
<div class="grid" style="display:flex; flex-wrap: wrap; justify-content:center;" markdown="1">
5454

55-
<article class="leadership-photo-container">
56-
<img class="leadership-photo" alt="photo of Jay" src="https://github.com/kjaymiller.png">
57-
<p><strong>Jay Miller</strong><br/>
58-
Executor</p>
59-
</article>
55+
{% for leader in site.data.global_leadership %}
6056

6157
<article class="leadership-photo-container">
62-
<img class="leadership-photo" alt="photo of Velda" src="https://github.com/VeldaKiara.png">
63-
<p><strong>Velda Kiara</strong><br/>
64-
Vice Executor</p>
58+
<img class="leadership-photo" alt="photo of Afi" src="{{ leader.image }}">
59+
<p><strong>{{ leader.name }}</strong><br/>
60+
{{ leader.title }}</p>
6561
</article>
62+
{% endfor %}
63+
</div>
64+
65+
### Regional Leadership Team
66+
67+
<div class="grid" style="display:flex; flex-wrap: wrap; justify-content:center;" markdown="1">
68+
69+
{% for leader in site.data.regional_leadership %}
6670

6771
<article class="leadership-photo-container">
68-
<img class="leadership-photo" alt="photo of Doreen" src="/assets/images/doreen.png">
69-
<p><strong>Doreen Nangira</strong><br/>
70-
Treasurer</p>
72+
<img class="leadership-photo" alt="photo of Afi" src="{{ leader.image }}">
73+
<p><strong>{{ leader.name }}</strong><br/>
74+
{{ leader.title }}</p>
7175
</article>
76+
{% endfor %}
7277
</div>
7378

7479
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.

0 commit comments

Comments
 (0)