-
Notifications
You must be signed in to change notification settings - Fork 9
/
contact.html
57 lines (47 loc) · 1.97 KB
/
contact.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
---
layout: default
nav: contact
title: "Contact"
---
<p class="lead">
The main developers of Azkaban are a part of LinkedIn's Data Team. For more information about our team, please visit our <a href="http://data.linkedin.com/" target="_blank">LinkedIn Data</a> site.
</p>
<h3>
Active team members
</h3>
<div class="list-group az-team">
{% for member in site.data.core-team %}
<div class="list-group-item">
<iframe class="github-btn" src="http://ghbtns.com/github-btn.html?user={{ member.user }}&type=follow"></iframe>
<a class="team-member" href="https://github.com/{{ member.user }}">
<img src="http://www.gravatar.com/avatar/{{ member.gravatar }}" alt="@{{ member.user }}">
<strong>{{ member.name }}</strong> <small>@{{ member.user }}</small>
</a>
</div>
{% endfor %}
</div>
<h3>
Past team members
</h3>
<div class="list-group az-team">
{% for member in site.data.past-team %}
<div class="list-group-item">
<iframe class="github-btn" src="http://ghbtns.com/github-btn.html?user={{ member.user }}&type=follow"></iframe>
<a class="team-member" href="https://github.com/{{ member.user }}">
<img src="http://www.gravatar.com/avatar/{{ member.gravatar }}" alt="@{{ member.user }}">
<strong>{{ member.name }}</strong> <small>@{{ member.user }}</small>
</a>
</div>
{% endfor %}
</div>
<h3>Mailing List</h3>
<p>
For questions and comments, please post messages to <a href="https://groups.google.com/forum/?fromgroups#!forum/azkaban-dev" target="_blank">Azkaban's Google Group</a>.
</p>
<h3>Get Involved</h3>
<p>
We're using <a href="https://github.com/azkaban/azkaban/issues">Github Issues</a> for tracking bugs. Get involved with Azkaban development by <a href="https://github.com/azkaban/azkaban/issues/new">opening an issue</a> or submitting a pull request. For feature requests, please open a pull request first.
</p>
<p>
Please read our <a href="contributing.html">contribution guidelines</a> if you would like to contribute.
</p>