source/team.html (80 lines of code) (raw):
---
---
{% include header.html %}
<h1>Team & Community</h1>
<p>Originally, SDAP represented a collaboration between <a href="https://www.jpl.nasa.gov">NASA Jet Propulsion Laboratory (JPL)</a>, <a href="https://coaps.fsu.edu">Center for Ocean-Atmospheric Prediction Studies, Florida State University</a>, the <a href="https://www2.cisl.ucar.edu">Computational Information Systems Laboratory (CISL) / National Center for Atmospheric Research (NCAR)</a>, and <a href="https://www2.gmu.edu">George Mason University (GMU)</a>. As the SDAP community expands, so will the happy faces below...</p>
<p>The SDAP team happily welcomes contributors and supporters of our work. Contributions, bug reports, and suggestions are welcome for the core products, website, documentation, and everything else! See below for more information on joining our community, submitting effective contributions and bug reports.</p>
<h2>Members</h2>
{% for org in site.data.team.team %}
<h3>{{ org.org }}</h3>
<div class="team row">
{% for member in org.members %}
<div class="team-member col-md-6">
<img src="https://avatars.githubusercontent.com/{{member.github}}" class="team-avatar img-thumbnail" />
<h4>{{member.name}}</h4>
<dl>
<dt>GitHub:</dt>
<dd><a class="external" href="https://github.com/{{member.github}}">{{member.github}}</a></dd>
<dt>Email:</dt>
<dd><a href="mailto:{{member.email.address}}">{{member.email.text}}</a></dd>
</dl>
</div>
{% endfor %}
</div>
{% endfor %}
<div class="ui vertical segment">
<h2 class="ui header">Mailing Lists</h2>
<h3 class="ui header">
<i class="user icon"></i>
<div class="content">Users</div>
</h3>
<p>
For users of Apache SDAP who want to keep up to date with new releases and community highlights. To subscribe, email <a href="mailto:user-subscribe@sdap.apache.org">user-subscribe@sdap.apache.org</a>.
</p>
<h3 class="ui header">
<i class="code icon"></i>
<div class="content">Dev</div>
</h3>
<p>
For contributors to Apache SDAP or those interested in ongoing design and development efforts. To subscribe, email <a href="mailto:dev-subscribe@sdap.apache.org">dev-subscribe@sdap.apache.org</a>.
</p>
<h3 class="ui header">
<i class="upload icon"></i>
<div class="content">Commits</div>
</h3>
<p>
For emails-on-commit across all Apache SDAP products. To subscribe, email <a href="mailto:commits-subscribe@sdap.apache.org">commits-subscribe@sdap.apache.org</a>.
</p>
</div>
<div class="ui vertical segment">
<h2 class="ui header">Community Hubs</h2>
<h3 class="ui header">
<i class="github icon"></i>
<div class="content">GitHub</div>
</h3>
<p>
<a href="https://github.com/apache?q=incubator-sdap">Find our code on Github</a> to browse and contribute.
</p>
<h3 class="ui header">
<i class="twitter icon"></i>
<div class="content">Twitter</div>
</h3>
<p>
<a href="https://twitter.com/apachesdap">Follow us on Twitter</a> to keep up to date on Apache SDAP and related developments.
</p>
<h3 class="ui header">
<i class="bug icon"></i>
<div class="content">Issues and Bugs</div>
</h3>
<p>
Visit our <a href="https://issues.apache.org/jira/browse/SDAP">JIRA Issue Tracker</a> for full information on current developments, bugs, etc.
</p>
<h3 class="ui header">
<i class="sticky note icon"></i>
<div class="content">Wiki</div>
</h3>
<p>
See our <a href="https://cwiki.apache.org/confluence/display/SDAP">wiki</a> for detailed information on project organization, roadmaps, etc.
</p>
</div>
{% include footer.html %}