www/contribute/index.html (59 lines of code) (raw):

--- 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="{{ site.baseurl }}/contribute/issues.html">bug or task</a></li> <li>Read the <a href="{{ site.baseurl }}/contribute/contribute_guidelines.html">Contributor Guidelines</a></li> <li>Read the <a href="{{ site.baseurl }}/deprecation_policy.html">Deprecation and Archiving Policy</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="https://s.apache.org/cordova-slack">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"> <ul class="nav issue-links"> <li> <span class="glyphicon glyphicon-list-alt"></span><i>&nbsp;</i> See all <a href="https://home.apache.org/phonebook.html?unix=cordova">Committers</a> </li> <li> <span class="glyphicon glyphicon-user"></span><i>&nbsp;</i> See all <a href="{{ site.baseurl }}/contribute/team.html">Team</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 %} <li> <div class="row"> <div class="col-xs-8 col-sm-8 project-label">{{ project.project }}</div> <div class="col-xs-4 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>