Skip to content

Commit 79f4b1f

Browse files
authored
Merge pull request #3 from devtools-html/people-section
adds a section to the readme with the people in the org
2 parents 1741073 + 6fbff70 commit 79f4b1f

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,3 +76,23 @@ There are various ways to get in touch with us:
7676
Most changes will be done via either the "pick a bug and send a patch" or "send a PR" processes.
7777

7878
For substantial changes, we ask that a "request for comment" (RFC) document is provided first, so we can examine what the implications of a change will be. Here is [how to follow the RFC process](https://github.com/devtools-html/rfcs/).
79+
80+
## People
81+
82+
<style>
83+
.people-grid {
84+
display: grid;
85+
grid-template-columns: repeat(8, 1fr);
86+
grid-gap: 10px;
87+
grid-auto-rows: minmax(100px, auto);
88+
}
89+
</style>
90+
91+
<div class="people-grid">
92+
{% for person in site.github.organization_members %}
93+
<a style="display:block;text-align:center;" src="{{ person.html_url }}">
94+
<img style="width:48px;max-height:48px;" src="{{ person.avatar_url }}"/>
95+
<div>{{ person.login }}</div>
96+
</a>
97+
{% endfor %}
98+
</div>

0 commit comments

Comments
 (0)