Skip to content

refactor leadership model with the new leadership model style #614

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Dec 16, 2024
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions _data/global_leadership.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
- name: Jay Miller
title: Executor
image: https://github.com/kjaymiller.png
alt: photo of Jay

9 changes: 9 additions & 0 deletions _data/regional_leadership.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
- name: Abigail "Afi" Gbadago
title: Executor(Africa)
image: /assets/images/afi.webp
alt: photo of Afi

- name: Lazuich Ford
title: Executor(North America)
image: /assets/images/laz.webp
alt: photo of Lazuich
29 changes: 17 additions & 12 deletions about.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,27 +48,32 @@ Here is a look at our current initiatives? Select to learn more.
</article>
</div>

## Leadership Team
### Global Leadership Team

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

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

<article class="leadership-photo-container">
<img class="leadership-photo" alt="photo of Velda" src="https://github.com/VeldaKiara.png">
<p><strong>Velda Kiara</strong><br/>
Vice Executor</p>
<img class="leadership-photo" alt="photo of Afi" src="{{ leader.image }}">
<p><strong>{{ leader.name }}</strong><br/>
{{ leader.title }}</p>
</article>
{% endfor %}
</div>

### Regional Leadership Team

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

{% for leader in site.data.regional_leadership %}

<article class="leadership-photo-container">
<img class="leadership-photo" alt="photo of Doreen" src="/assets/images/doreen.png">
<p><strong>Doreen Nangira</strong><br/>
Treasurer</p>
<img class="leadership-photo" alt="photo of Afi" src="{{ leader.image }}">
<p><strong>{{ leader.name }}</strong><br/>
{{ leader.title }}</p>
</article>
{% endfor %}
</div>

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.
Expand Down
Loading