blob: 5d81b1fc6ed2558bc115a28c890e2eebb2fbb6f8 (
plain)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
---
layout: contribute
title: Contribute
---
<!-- REMOVE THIS LINK BEFORE PUBLISHING. This is just for IntelliSense while coding -->
<!-- <link rel="stylesheet" type="text/css" href="static/css/lib/bootstrap.css"/> -->
<!-- Main jumbotron for a primary marketing message or call to action -->
<div class="row">
<div class="col-sm-12 text-center">
<h1>Want to Contribute?</h1>
<p>Contributors are needed to keep the project moving forward!</p>
</div>
</div>
<div class="row">
<div class="col-sm-7">
<h2>What you can do</h2>
<ul class="contribute-get-started-steps">
<li>File a <a href="./issues.html">bug or task</a></li>
<li>Read the <a href="./contribute_guidelines.html">Contributor Guidelines</a></li>
<li>Join the <a href="{{ site.linkto.mail_lists }}">Dev mailing list</a> and send a brief introduction of yourself to it</li>
<li>Join the discussion on <a href="{{ site.slack.host }}">Slack</a></li>
<li>Sign the <a href="http://www.apache.org/licenses/#clas">Individual Contributor License Agreement (ICLA)</a> and <a href="mailto:secretary@agl.org">submit it</a></li>
</ul>
</div>
<div class="col-sm-5">
<div class="well">
<div class="input-group">
<input id="jira-search-box" type="text" class="form-control" placeholder="Search current issue list...">
<span class="input-group-btn">
<button id="jira-search-button" class="btn btn-default" type="button"><span class="glyphicon glyphicon-search"></span></button>
</span>
</div>
<ul class="nav issue-links">
<li>
<span class="glyphicon glyphicon-warning-sign"></span><i> </i>
<a href="{{ site.linkto.jira_specs }}">View All Issues</a>
</li>
<li>
<span class="glyphicon glyphicon-user"></span><i> </i>
See all <a href="{{ site.linkto.jira_users }}">Committers</a> / <a href="{{ site.linkto.code_contrib }}">Contributors</a>
</li>
</ul>
</div>
</div>
</div>
<div class="row">
{% for projectType in site.data.contribute-repo-links %}
{% assign firstProjectType = forloop.first %}
<div class="col-md-6">
<ul class="list platforms-list">
<h2>{{ projectType.title }}</h2>
{% for project in projectType.projects %}
{% if firstProjectType and forloop.first %}
{% assign itemClass = "first" %}
{% else %}
{% assign itemClass = "" %}
{% endif %}
<li class="{{ itemClass }}">
<div class="row">
<div class="col-xs-12 col-sm-8 project-label">
{{ project.project }}
</div>
<div class="col-xs-12 col-sm-4 project-links">
<div class="link-box">
{% if project.mirror %}
<a class="link-github" target="_blank" href="{{ project.mirror }}"></a>
{% endif %}
</div>
<div class="link-box">
<a class="link-agl" target="_blank" href="{{ project.gerrit }}"></a>
</div>
</div>
</div>
</li>
{% endfor %}
</ul>
</div>
{% endfor %}
</div>
|