aboutsummaryrefslogtreecommitdiffstats
path: root/site/contribute/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'site/contribute/index.html')
-rw-r--r--site/contribute/index.html83
1 files changed, 83 insertions, 0 deletions
diff --git a/site/contribute/index.html b/site/contribute/index.html
new file mode 100644
index 0000000..5d81b1f
--- /dev/null
+++ b/site/contribute/index.html
@@ -0,0 +1,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>&nbsp;</i>
+ <a href="{{ site.linkto.jira_specs }}">View All Issues</a>
+ </li>
+ <li>
+ <span class="glyphicon glyphicon-user"></span><i>&nbsp;</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>