Skip to content
This repository was archived by the owner on Sep 30, 2020. It is now read-only.

Add community subteam #155

Merged
merged 2 commits into from
Jun 28, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<header>

<ul class="row menu">
<li class="col-xs-12 col-md-4">
<li class="col-xs-12 col-md-2">
<a href="index.html">
<img class="img-responsive" src="logos/rust-logo-blk.svg" onerror="this.src='logos/rust-logo-256x256-blk.png'" height="128" width="128" alt="Rust logo" />
</a>
Expand Down Expand Up @@ -75,6 +75,13 @@
</li>
</ul>
</li>
<li class="col-xs-4 col-md-2"><h2>&nbsp;</h2>
<ul>
<li>
<a href="team.html">Team</a>
</li>
</ul>
</li>
</ul>
</header>
{{ content }}
Expand Down
38 changes: 32 additions & 6 deletions team.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ people:
name: Brian Koropoff
brson:
name: Brian Anderson
bstrie:
name: Ben Striegel
BurntSushi:
name: Andrew Gallant
irc: burntsushi
Expand Down Expand Up @@ -53,8 +55,13 @@ people:
name: Patrick Walton
pnkfelix:
name: Felix Klock
rpcraig:
name: Rachel Craig
site: twitter
sfackler:
name: Steven Fackler
skade:
name: Florian Gilcher
steveklabnik:
name: Steve Klabnik
vadimcn:
Expand Down Expand Up @@ -83,10 +90,23 @@ teams:
responsibility: "tool support (e.g. Cargo, multirust), CI infrastructure, etc."
members: [brson, nrc, alexcrichton, vadimcn, wycats, michaelwoerister]
lead: alexcrichton
- name: Community
responsibility: "coordinating events, outreach, commercial users, teaching materials, and exposure"
lead: steveklabnik
members: [brson, rpcraig, skade, manishearth, steveklabnik, bstrie, erickt]
- name: Moderation
responsibility: "helping uphold the <a href='http://www.rust-lang.org/conduct.html'>code of conduct</a>"
members: [mbrubeck, BurntSushi, manishearth, pnkfelix, erickt]
email: [email protected]

# Information on sites to get profile information from
sites:
github:
url: https://github.com/%nick
avatar: http://avatars.githubusercontent.com/%nick
twitter:
url: https://twitter.com/%nick
avatar: https://avatars.io/twitter/%nick?size=large
---

<style type="text/css">
Expand Down Expand Up @@ -146,13 +166,19 @@ rosters, in alphabetical order.
{% endif %}

<ul class="headshots">
{% for github in team.members %}
{% assign person = page.people[github] %}
<li class="person {% if team.lead and team.lead == github %}lead{% endif %}">
<a href="https://github.com/{{ github }}">
{% for nick in team.members %}
{% assign person = page.people[nick] %}
{% if person.site %}
{% assign sitename = person.site %}
{% else %}
{% assign sitename = "github" %}
{% endif %}
{% assign site = page.sites[sitename] %}
<li class="person {% if team.lead and team.lead == nick %}lead{% endif %}">
<a href="{{ site.url | replace:'%nick',nick }}">
<div class="name">{{ person.name }}</div>
<div class="irc">irc: {% if person.irc %}{{ person.irc }}{% else %}{{ github }}{% endif %}</div>
<img class="headshot" src="http://avatars.githubusercontent.com/{{ github }}">
<div class="irc">irc: {% if person.irc %}{{ person.irc }}{% else %}{{ nick }}{% endif %}</div>
<img class="headshot" src="{{ site.avatar | replace:'%nick',nick }}">
</a>
</li>
{% endfor %}
Expand Down