@@ -16,6 +16,8 @@ people:
16
16
name : Brian Koropoff
17
17
brson :
18
18
name : Brian Anderson
19
+ bstrie :
20
+ name : Ben Striegel
19
21
BurntSushi :
20
22
name : Andrew Gallant
21
23
irc : burntsushi
@@ -53,8 +55,13 @@ people:
53
55
name : Patrick Walton
54
56
pnkfelix :
55
57
name : Felix Klock
58
+ rpcraig :
59
+ name : Rachel Craig
60
+ site : twitter
56
61
sfackler :
57
62
name : Steven Fackler
63
+ skade :
64
+ name : Florian Gilcher
58
65
steveklabnik :
59
66
name : Steve Klabnik
60
67
vadimcn :
@@ -83,10 +90,23 @@ teams:
83
90
responsibility : " tool support (e.g. Cargo, multirust), CI infrastructure, etc."
84
91
members : [brson, nrc, alexcrichton, vadimcn, wycats, michaelwoerister]
85
92
lead : alexcrichton
93
+ - name : Community
94
+ responsibility : " coordinating events, outreach, commercial users, teaching materials, and exposure"
95
+ lead : steveklabnik
96
+ members : [brson, rpcraig, skade, manishearth, steveklabnik, bstrie, erickt]
86
97
- name : Moderation
87
98
responsibility : " helping uphold the <a href='http://www.rust-lang.org/conduct.html'>code of conduct</a>"
88
99
members : [mbrubeck, BurntSushi, manishearth, pnkfelix, erickt]
89
100
101
+
102
+ # Information on sites to get profile information from
103
+ sites :
104
+ github :
105
+ url : https://github.com/%nick
106
+ avatar : http://avatars.githubusercontent.com/%nick
107
+ twitter :
108
+ url : https://twitter.com/%nick
109
+ avatar : https://avatars.io/twitter/%nick?size=large
90
110
---
91
111
92
112
<style type =" text/css " >
@@ -146,13 +166,19 @@ rosters, in alphabetical order.
146
166
{% endif %}
147
167
148
168
<ul class =" headshots " >
149
- {% for github in team.members %}
150
- {% assign person = page.people[ github] %}
151
- <li class =" person {% if team.lead and team.lead == github %}lead{% endif %} " >
152
- <a href =" https://github.com/{{ github }} " >
169
+ {% for nick in team.members %}
170
+ {% assign person = page.people[ nick] %}
171
+ {% if person.site %}
172
+ {% assign sitename = person.site %}
173
+ {% else %}
174
+ {% assign sitename = "github" %}
175
+ {% endif %}
176
+ {% assign site = page.sites[ sitename] %}
177
+ <li class =" person {% if team.lead and team.lead == nick %}lead{% endif %} " >
178
+ <a href =" {{ site.url | replace:'%nick',nick }} " >
153
179
<div class="name">{{ person.name }}</div>
154
- <div class="irc">irc: {% if person.irc %}{{ person.irc }}{% else %}{{ github }}{% endif %}</div>
155
- <img class="headshot" src="http://avatars.githubusercontent.com/ {{ github }}">
180
+ <div class="irc">irc: {% if person.irc %}{{ person.irc }}{% else %}{{ nick }}{% endif %}</div>
181
+ <img class="headshot" src="{{ site.avatar | replace:'%nick',nick }}">
156
182
</a >
157
183
</li >
158
184
{% endfor %}
0 commit comments