blob: 844f7575949a23623bf455004cc5a574c130fe93 (
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
|
---
layout: contribute
title: Contribute
---
<!-- 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 IRC, <a href="{{ site.irc.host }}">channel {{ site.irc.channel }}</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_issues }}">View All Issues</a>
</li>
<li>
<span class="glyphicon glyphicon-user"></span><i> </i>
See <a href="{{ site.linkto.jira_project }}">Summary</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">
{% if project.gerrit %}
<a class="link-agl" target="_blank" href="{{ project.gerrit }}"></a>
{% endif %}
</div>
</div>
</div>
</li>
{% endfor %}
</ul>
</div>
{% endfor %}
</div>
|