Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Add Community Members template page
List mentors and committers on the community members page
- Loading branch information
Showing
4 changed files
with
139 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,84 @@ | ||
- name: Alexandre V Evfimievski | ||
apache_id: ae2015 | ||
pmc: true | ||
affiliation: IBM | ||
|
||
- name: Arvind Surve | ||
apache_id: acs_s | ||
pmc: true | ||
affiliation: IBM | ||
|
||
- name: Berthold Reinwald | ||
apache_id: reinwald | ||
pmc: true | ||
affiliation: IBM | ||
|
||
- name: DB Tsai | ||
apache_id: dbtsai | ||
pmc: true | ||
affiliation: Netflix | ||
|
||
- name: Deron Eriksson | ||
apache_id: deron | ||
pmc: true | ||
affiliation: IBM | ||
|
||
- name: Fred Reiss | ||
apache_id: freiss | ||
pmc: true | ||
affiliation: IBM | ||
|
||
- name: Holden Karau | ||
apache_id: holden | ||
pmc: true | ||
affiliation: IBM | ||
|
||
- name: Joseph Bradley | ||
apache_id: jkbradley | ||
pmc: true | ||
affiliation: Databricks | ||
|
||
- name: Luciano Resende | ||
apache_id: lresende | ||
pmc: true | ||
affiliation: IBM | ||
|
||
- name: Matthias Boehm | ||
apache_id: mboehm7 | ||
pmc: true | ||
affiliation: IBM | ||
|
||
- name: Mike Dusenberry | ||
apache_id: dusenberrymw | ||
pmc: true | ||
affiliation: IBM | ||
|
||
- name: Niketan Pansare | ||
apache_id: niketanpansare | ||
pmc: true | ||
affiliation: IBM | ||
|
||
- name: Patrick WendelL | ||
apache_id: pwendell | ||
pmc: true | ||
affiliation: Databricks | ||
|
||
- name: Prithviraj Sen | ||
apache_id: prithvi | ||
pmc: true | ||
affiliation: IBM | ||
|
||
- name: Reynold Xin | ||
apache_id: rxin | ||
pmc: true | ||
affiliation: Databricks | ||
|
||
- name: Shirish Tatikonda | ||
apache_id: shirisht | ||
pmc: true | ||
affiliation: IBM | ||
|
||
- name: Xiangrui Meng | ||
apache_id: meng | ||
pmc: true | ||
affiliation: Databricks |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,12 @@ | ||
- name: Luciano Resende | ||
apache_id: lresende | ||
|
||
- name: Patrick Wendell | ||
apache_id: pwendell | ||
|
||
- name: Reynold Xin | ||
apache_id: rxin | ||
|
||
- name: Rich Bowen | ||
apache_id: rbowen | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,43 @@ | ||
--- | ||
layout: page | ||
title: Community Members | ||
description: Project Community Page | ||
group: nav-right | ||
--- | ||
{% include JB/setup %} | ||
|
||
### {{ site.data.project.short_name }} Mentors | ||
|
||
{% if site.data.mentors %} | ||
<table class="table table-hover"> | ||
<tr> | ||
<th><b>ID</b></th><th><b>Full Name</b></th> | ||
</tr> | ||
{% for mentor in site.data.mentors %} | ||
<tr> | ||
<td>{{mentor.apache_id}}</td> | ||
<td>{{mentor.name}}</td> | ||
</tr> | ||
{% endfor %} | ||
</table> | ||
{% endif %} | ||
|
||
|
||
### {{ site.data.project.short_name }} Team Members | ||
|
||
{% if site.data.members %} | ||
<table class="table table-hover"> | ||
<tr> | ||
<th><b>ID</b></th><th><b>Full Name</b></th><th><b>PMC</b></th><th><b>Affiliation</b></th> | ||
</tr> | ||
{% for member in site.data.members %} | ||
<tr> | ||
<td>{{member.apache_id}}</td> | ||
<td>{{member.name}}</td> | ||
<td>{{member.pmc}}</td> | ||
<td>{{member.affiliation}}</td> | ||
</tr> | ||
{% endfor %} | ||
</table> | ||
{% endif %} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters