Skip to content

Commit 142d8b2

Browse files
authored
Add new executive director announcement (#253)
* Add new executive director announcement * Update structure page * Add Elizabeth contacts
1 parent b6a914b commit 142d8b2

5 files changed

Lines changed: 77 additions & 23 deletions

File tree

source/_pages/structure.html

Lines changed: 31 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,36 @@
44
permalink: structure
55
---
66

7+
<div class="my-16 mb-24">
8+
<div class="grid grid-cols-1 gap-12 lg:grid-cols-3 lg:gap-8">
9+
<div class="space-y-5 sm:space-y-4">
10+
<h2 class="text-3xl text-gray-800 font-bold tracking-tight mt-0" id="staff">Staff</h2>
11+
<div class="text-xl text-gray-500">
12+
The PHP Foundation staff members who coordinate operations and fundraising.
13+
</div>
14+
</div>
15+
<div class="lg:col-span-2">
16+
<div class="space-y-12 sm:grid sm:grid-cols-2 sm:gap-12 sm:space-y-0 lg:gap-x-8">
17+
{{ include('structure-item.html', {
18+
name: 'Elizabeth Barron',
19+
image: '/assets/team/elizabeth_barron.jpeg',
20+
job: 'Executive Director',
21+
mastodon: 'https://mastodon.social/@elizabeth@fosstodon.org',
22+
linkedin: 'https://www.linkedin.com/in/elizabethn',
23+
}) }}
24+
25+
{{ include('structure-item.html', {
26+
name: 'Ben Marks',
27+
image: '/assets/team/ben_marks.jpeg',
28+
job: 'Director (Fundraising)',
29+
twitter: 'https://twitter.com/benmarks',
30+
github: 'https://github.com/benmarks',
31+
}) }}
32+
</div>
33+
</div>
34+
</div>
35+
</div>
36+
737
<div class="my-16 mb-24">
838
<div class="grid grid-cols-1 gap-12 lg:grid-cols-3 lg:gap-8">
939
<div class="space-y-5 sm:space-y-4">
@@ -52,7 +82,7 @@ <h2 class="text-3xl text-gray-800 font-bold tracking-tight mt-0" id="admins">Boa
5282
name: 'Roman Pronskiy',
5383
company: 'JetBrains',
5484
image: 'https://avatars.githubusercontent.com/u/1196825?s=200&v=4',
55-
job: 'Board member, Executive Director',
85+
job: 'Board member',
5686
twitter: 'https://twitter.com/pronskiy',
5787
github: 'https://github.com/pronskiy',
5888
}) }}
@@ -87,28 +117,6 @@ <h2 class="text-3xl text-gray-800 font-bold tracking-tight mt-0" id="admins">Boa
87117
</div>
88118
</div>
89119

90-
<div class="my-16 mb-24">
91-
<div class="grid grid-cols-1 gap-12 lg:grid-cols-3 lg:gap-8">
92-
<div class="space-y-5 sm:space-y-4">
93-
<h2 class="text-3xl text-gray-800 font-bold tracking-tight mt-0" id="staff">Staff</h2>
94-
<div class="text-xl text-gray-500">
95-
The PHP Foundation staff members who coordinate operations and fundraising.
96-
</div>
97-
</div>
98-
<div class="lg:col-span-2">
99-
<div class="space-y-12 sm:grid sm:grid-cols-2 sm:gap-12 sm:space-y-0 lg:gap-x-8">
100-
{{ include('structure-item.html', {
101-
name: 'Ben Marks',
102-
image: '/assets/team/ben_marks.jpeg',
103-
job: 'Director (Fundraising)',
104-
twitter: 'https://twitter.com/benmarks',
105-
github: 'https://github.com/benmarks',
106-
}) }}
107-
</div>
108-
</div>
109-
</div>
110-
</div>
111-
112120
<div class="my-16 mb-24">
113121
<div class="grid grid-cols-1 gap-12 lg:grid-cols-3 lg:gap-8">
114122
<div class="space-y-5 sm:space-y-4">

source/_partials/redditify.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
class="thread-container"
33
data-reddit-thread=""
44
data-reddit-search="PHP"
5+
data-reddit-suggest-title="{{page.title}}"
56
data-reddit-max-depth="10"
67
data-reddit-show-content="false"
78
data-reddit-show-controls="true"
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,20 @@
99
{% endif %}
1010
<div class="text-[#7f52ff]" itemprop="jobTitle">{{ job }}</div>
1111
<ul class="flex space-x-4 list-none p-0 m-0">
12+
13+
{% if linkedin %}
14+
<li>
15+
<a href="{{ linkedin }}"
16+
class="text-gray-400 hover:text-gray-500" rel="noreferrer noopener"
17+
target="_blank" itemprop="url">
18+
<span class="sr-only">LinkedIn</span>
19+
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
20+
<path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.062 2.062 0 0 1-2.063-2.065 2.064 2.064 0 1 1 2.063 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/>
21+
</svg>
22+
</a>
23+
</li>
24+
{% endif %}
25+
1226
{% if mastodon %}
1327
<li>
1428
<a href="{{ mastodon }}"
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
title: 'Welcoming Elizabeth Barron as the New Executive Director of The PHP Foundation'
3+
layout: post
4+
tags:
5+
- news
6+
author:
7+
- name: The PHP Foundation
8+
url: https://thephp.foundation
9+
10+
published_at: 27 February 2026
11+
12+
---
13+
14+
We're excited to welcome [Elizabeth Barron](https://www.linkedin.com/in/elizabethn) as the next Executive Director of The PHP Foundation, following a thorough process led by our search committee of [Nils Adermann](https://www.linkedin.com/in/nilsadermann/), [Sebastian Bergmann](https://www.linkedin.com/in/sebastian-bergmann-phpunit), [Lorna Mitchell](https://www.linkedin.com/in/lornajane/), and [Ben Ramsey](https://www.linkedin.com/in/benramsey/).
15+
16+
Elizabeth brings a rare combination of deep roots in the PHP community and proven leadership in open-source governance. She co-founded a volunteer-based nonprofit dedicated to supporting women and non-binary individuals in the PHP industry, served as Community Manager at GitHub where she led developer outreach programs including the Patchwork initiative, and has been active in CHAOSS – a project focused on open-source community health metrics.
17+
18+
Her experience spanning community building, fundraising, outreach operations, and open-source strategy makes her a natural fit to lead the foundation into its next chapter.
19+
20+
As previously announced, founding Executive Director [Roman Pronskiy](https://www.linkedin.com/in/pronskiy/) is transitioning to focus on his growing role at [JetBrains](https://www.jetbrains.com/), while continuing to serve on the Board of Directors. Roman will work closely with Elizabeth to ensure a smooth handover.
21+
22+
{{ include('quote.html', {
23+
name: 'Elizabeth Barron',
24+
title: 'Executive Director, The PHP Foundation',
25+
image: '/assets/team/elizabeth_barron.jpeg',
26+
quote: "In just a few years, The PHP Foundation has built something remarkable, and I'm honored to take on this role and continue that work. PHP powers a huge part of the web, and I'm excited to work with the Board, our core developers, and the broader PHP community to strengthen and expand the Foundation's impact so that together we can ensure PHP thrives for decades to come."
27+
}) }}
28+
29+
<br>
30+
Please join us in welcoming Elizabeth. We're looking forward to what's ahead.
31+
🐘💜
44.2 KB
Loading

0 commit comments

Comments
 (0)