Skip to content

Commit 3ba135e

Browse files
authored
Merge pull request #51 from python-pillow/add-team-section
Add Team section
2 parents ff0a2c3 + 8f90df4 commit 3ba135e

2 files changed

Lines changed: 109 additions & 4 deletions

File tree

assets/css/pillow.css

Lines changed: 64 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -387,6 +387,69 @@ section {
387387
margin: 0;
388388
}
389389

390+
/* ------------------------------------------------------------------ Team */
391+
392+
.team {
393+
background-color: var(--paper-dim);
394+
}
395+
396+
.team-grid {
397+
display: grid;
398+
grid-template-columns: repeat(4, 1fr);
399+
gap: 1.5rem;
400+
}
401+
402+
.team-card {
403+
border: 1px solid var(--line);
404+
border-radius: 10px;
405+
padding: 1.75rem 1.25rem;
406+
text-align: center;
407+
background-color: var(--paper);
408+
}
409+
410+
.team-card .avatar {
411+
width: 64px;
412+
height: 64px;
413+
margin: 0 auto 1rem;
414+
border-radius: 50%;
415+
background-color: var(--ink);
416+
color: var(--paper);
417+
display: flex;
418+
align-items: center;
419+
justify-content: center;
420+
font-size: 1.4rem;
421+
}
422+
423+
.team-card h3 {
424+
font-size: 1rem;
425+
margin: 0 0 .25rem;
426+
}
427+
428+
.team-card .role {
429+
color: var(--ink-soft);
430+
font-size: .85rem;
431+
margin: 0 0 .75rem;
432+
}
433+
434+
.team-card a {
435+
font-size: .85rem;
436+
color: var(--ink-soft);
437+
}
438+
439+
.team-card a:hover {
440+
color: var(--coral-dark);
441+
}
442+
443+
.team-card a i {
444+
margin-right: .3rem;
445+
}
446+
447+
@media (max-width: 760px) {
448+
.team-grid {
449+
grid-template-columns: repeat(2, 1fr);
450+
}
451+
}
452+
390453
/* ------------------------------------------------------------- History */
391454

392455
.timeline {
@@ -399,7 +462,6 @@ section {
399462
.timeline-item {
400463
padding: 1.75rem 1.5rem 2rem;
401464
border-right: 1px solid var(--line);
402-
border-bottom: 1px solid var(--line);
403465
}
404466

405467
.timeline-item:first-child {
@@ -485,7 +547,7 @@ section {
485547
/* ------------------------------------------------------------ In memory */
486548

487549
.memory {
488-
padding: .5rem 1.5rem 2rem;
550+
padding: 2.5rem 1.5rem 3rem;
489551
text-align: center;
490552
border-bottom: 1px solid var(--line);
491553
}

index.html

Lines changed: 45 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
<nav class="site-nav" aria-label="Page sections">
3737
<a href="#docs">Project</a>
3838
<a href="#showcase">Showcase</a>
39+
<a href="#team">Team</a>
3940
<a href="#history">History</a>
4041
</nav>
4142
<a class="btn btn-sponsor btn-sm" href="#sponsor">
@@ -217,8 +218,7 @@ <h2>From PIL to <span class="highlight">Pillow</span></h2>
217218
<div class="timeline-item">
218219
<span class="index">2010</span>
219220
<p>Jeffrey &lsquo;Alex&rsquo; Clark forks
220-
the project and renames it to Pillow to add setuptools support. A community of
221-
contributors soon joins in.</p>
221+
PIL to add setuptools support and publishes the fork to PyPI (Python Package Index) with the name "Pillow". Within a few years, a community of contributors joins in.</p>
222222
</div>
223223
<div class="timeline-item">
224224
<span class="index">2013</span>
@@ -242,6 +242,49 @@ <h2>From PIL to <span class="highlight">Pillow</span></h2>
242242
</div>
243243
</section>
244244

245+
<!-- Team -->
246+
<section id="team" class="team">
247+
<div class="wrap">
248+
<div class="section-head center">
249+
<h2>Team</h2>
250+
<p>
251+
Pillow is kept alive by a small team of core maintainers who review pull
252+
requests, triage issues, and ship every release &mdash; all as volunteers.
253+
</p>
254+
</div>
255+
<div class="team-grid">
256+
<div class="team-card">
257+
<div class="avatar"><i class="fas fa-user" aria-hidden="true"></i></div>
258+
<h3>Jeffrey &lsquo;Alex&rsquo; Clark</h3>
259+
<p class="role">Founder &amp; Maintainer</p>
260+
<a href="https://github.com/sponsors/aclark4life">
261+
<i class="fab fa-github" aria-hidden="true"></i> aclark4life</a>
262+
</div>
263+
<div class="team-card">
264+
<div class="avatar"><i class="fas fa-user" aria-hidden="true"></i></div>
265+
<h3>Andrew Murray</h3>
266+
<p class="role">Core Maintainer</p>
267+
<a href="https://github.com/sponsors/radarhere">
268+
<i class="fab fa-github" aria-hidden="true"></i> radarhere</a>
269+
</div>
270+
<div class="team-card">
271+
<div class="avatar"><i class="fas fa-user" aria-hidden="true"></i></div>
272+
<h3>wiredfool</h3>
273+
<p class="role">Core Maintainer</p>
274+
<a href="https://github.com/sponsors/wiredfool">
275+
<i class="fab fa-github" aria-hidden="true"></i> wiredfool</a>
276+
</div>
277+
<div class="team-card">
278+
<div class="avatar"><i class="fas fa-user" aria-hidden="true"></i></div>
279+
<h3>Hugo van Kemenade</h3>
280+
<p class="role">Core Maintainer</p>
281+
<a href="https://github.com/sponsors/hugovk">
282+
<i class="fab fa-github" aria-hidden="true"></i> hugovk</a>
283+
</div>
284+
</div>
285+
</div>
286+
</section>
287+
245288
<!-- In memory -->
246289
<div class="memory">
247290
<a href="https://pillow.readthedocs.io/en/stable/releasenotes/9.0.0.html#fredrik-lundh">In memory of Fredrik Lundh</a>

0 commit comments

Comments
 (0)