123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- ---
- 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.baseurl }}/contact">Dev mailing list</a> and send a brief introduction of yourself to it</li>
- <li>Join the discussion on <a href="http://slack.cordova.io/">Slack</a></li>
- <li>Try out the next version of Cordova using <a href="{{ site.baseurl }}/contribute/nightly_builds.html">nightly builds</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="https://issues.apache.org/jira/browse/CB/?selectedTab=com.atlassian.jira.jira-projects-plugin:issues-panel">View All Issues</a>
- </li>
- <li>
- <span class="glyphicon glyphicon-user"></span><i> </i>
- See all <a href="http://home.apache.org/phonebook.html?unix=cordova">Committers</a> / <a href="https://people.apache.org/unlistedclas.html">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-lg-4 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">
- <a class="link-github" target="_blank" href="{{ project.mirror }}"></a>
- </div>
- </div>
- </div>
- </li>
- {% endfor %}
- </ul>
- </div>
- {% endfor %}
- </div>
|