This repository has been archived by the owner on Jul 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathteam.liquid
61 lines (60 loc) · 2.71 KB
/
team.liquid
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
---
title: Team
layout: doc
---
<h1>Team</h1>
<p>These are the people who build and maintain ESLint.</p>
<h2>Technical Steering Committee</h2>
<p>The people who manage releases, review feature requests, and meet regularly to ensure ESLint is properly maintained.</p>
<div class="container-fluid">
<div class="row">
{% for person in team.tsc %}
<div class="col-xs-6 col-sm-4 col-md-3 text-center" style="margin-bottom: 2rem">
<a href="https://github.com/{{ person.username }}"><img src="https://github.com/{{person.username}}.png?s=150" width="150"></a><br>
{{ person.name }}<br><a href="https://github.com/{{ person.username }}">@{{ person.username }}</a>
</div>
{% endfor %}
</div>
</div>
{% if team.reviewers.size > 0 %}
<h2>Reviewers</h2>
<p>The people who review and implement new features.</p>
<div class="container-fluid">
<div class="row">
{% for person in team.reviewers %}
<div class="col-xs-6 col-sm-4 col-md-3 text-center" style="margin-bottom: 2rem">
<a href="https://github.com/{{ person.username }}"><img src="https://github.com/{{person.username}}.png?s=150" width="150"></a><br>
{{ person.name }}<br><a href="https://github.com/{{ person.username }}">@{{ person.username }}</a>
</div>
{% endfor %}
</div>
</div>
{% endif %}
{% if team.committers.size > 0 %}
<h2>Committers</h2>
<p>The people who review and fix bugs and help triage issues.</p>
<div class="container-fluid">
<div class="row">
{% for person in team.committers %}
<div class="col-xs-6 col-sm-4 col-md-3 text-center" style="margin-bottom: 2rem">
<a href="https://github.com/{{ person.username }}"><img src="https://github.com/{{person.username}}.png?s=150" width="150"></a><br>
{{ person.name }}<br><a href="https://github.com/{{ person.username }}">@{{ person.username }}</a>
</div>
{% endfor %}
</div>
</div>
{% endif %}
{% if team.alumni.size > 0 %}
<h2>Alumni</h2>
<p>Former TSC members and committers who previously helped maintain ESLint.</p>
<div class="container-fluid">
<div class="row">
{% for person in team.alumni %}
<div class="col-xs-6 col-sm-4 col-md-3 text-center" style="margin-bottom: 2rem">
<a href="https://github.com/{{ person.username }}"><img src="https://github.com/{{person.username}}.png?s=150" width="150"></a><br>
{{ person.name }}<br><a href="https://github.com/{{ person.username }}">@{{ person.username }}</a>
</div>
{% endfor %}
</div>
</div>
{% endif %}