index.html 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. ---
  2. layout: contribute
  3. title: Contribute
  4. ---
  5. <!-- REMOVE THIS LINK BEFORE PUBLISHING. This is just for IntelliSense while coding -->
  6. <!-- <link rel="stylesheet" type="text/css" href="static/css/lib/bootstrap.css"/> -->
  7. <!-- Main jumbotron for a primary marketing message or call to action -->
  8. <div class="row">
  9. <div class="col-sm-12 text-center">
  10. <h1>Want to Contribute?</h1>
  11. <p>Contributors are needed to keep the project moving forward!</p>
  12. </div>
  13. </div>
  14. <div class="row">
  15. <div class="col-sm-7">
  16. <h2>What you can do</h2>
  17. <ul class="contribute-get-started-steps">
  18. <li>File a <a href="./issues.html">bug or task</a></li>
  19. <li>Read the <a href="./contribute_guidelines.html">Contributor Guidelines</a></li>
  20. <li>Join the <a href="{{ site.baseurl }}/contact">Dev mailing list</a> and send a brief introduction of yourself to it</li>
  21. <li>Join the discussion on <a href="http://slack.cordova.io/">Slack</a></li>
  22. <li>Try out the next version of Cordova using <a href="{{ site.baseurl }}/contribute/nightly_builds.html">nightly builds</a></li>
  23. </ul>
  24. </div>
  25. <div class="col-sm-5">
  26. <div class="well">
  27. <div class="input-group">
  28. <input id="jira-search-box" type="text" class="form-control" placeholder="Search current issue list...">
  29. <span class="input-group-btn">
  30. <button id="jira-search-button" class="btn btn-default" type="button"><span class="glyphicon glyphicon-search"></span></button>
  31. </span>
  32. </div>
  33. <ul class="nav issue-links">
  34. <li>
  35. <span class="glyphicon glyphicon-warning-sign"></span><i>&nbsp;</i>
  36. <a href="https://issues.apache.org/jira/browse/CB/?selectedTab=com.atlassian.jira.jira-projects-plugin:issues-panel">View All Issues</a>
  37. </li>
  38. <li>
  39. <span class="glyphicon glyphicon-user"></span><i>&nbsp;</i>
  40. See all <a href="http://home.apache.org/phonebook.html?unix=cordova">Committers</a> / <a href="https://people.apache.org/unlistedclas.html">Contributors</a>
  41. </li>
  42. </ul>
  43. </div>
  44. </div>
  45. </div>
  46. <div class="row">
  47. {% for projectType in site.data.contribute-repo-links %}
  48. {% assign firstProjectType = forloop.first %}
  49. <div class="col-lg-4 col-md-6">
  50. <ul class="list platforms-list">
  51. <h2>{{ projectType.title }}</h2>
  52. {% for project in projectType.projects %}
  53. {% if firstProjectType and forloop.first %}
  54. {% assign itemClass = "first" %}
  55. {% else %}
  56. {% assign itemClass = "" %}
  57. {% endif %}
  58. <li class="{{ itemClass }}">
  59. <div class="row">
  60. <div class="col-xs-12 col-sm-8 project-label">
  61. {{ project.project }}
  62. </div>
  63. <div class="col-xs-12 col-sm-4 project-links">
  64. <div class="link-box">
  65. <a class="link-github" target="_blank" href="{{ project.mirror }}"></a>
  66. </div>
  67. </div>
  68. </div>
  69. </li>
  70. {% endfor %}
  71. </ul>
  72. </div>
  73. {% endfor %}
  74. </div>