-
Notifications
You must be signed in to change notification settings - Fork 24
/
contribute.html
86 lines (84 loc) · 3.37 KB
/
contribute.html
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
82
83
84
85
86
---
layout: default
title: Shoes!
permalink: /contribute/
---
<div class="contribute">
<!-- ways to contribute -->
<div class="row">
<div class="col-md-3">
<div class="logo">
<img alt='shoes logo' src='/img/shoes-icon.png' class="logo" />
</div>
</div>
<div class="col-md-9">
<div class="row">
<div class="col-md-12">
<h2>There are many great ways to contribute!</h2>
<p>Shoes is a friendly, inclusive open source project with many ways to get involved. If you are interested in JRuby packaging, web development, graphics,
or if you're just starting out, welcome! Here are some ways to get started in the community.</p>
</div>
</div>
<div class="row">
<div class="col-md-4">
<h2>Shoes 4</h2>
<p>Shoes 4 is a complete re-write of shoes.</p>
<a href='https://github.com/shoes/shoes4'>Shoes 4 on GitHub</a>
</div>
<div class="col-md-4">
<h2>Shoes 3.3</h2>
<p>Shoes 3.3 is an extended version of Shoes 3</p>
<a href='https://github.com/Shoes3/shoes3'>Shoes 3.3 on GitHub</a>
</div>
<div class="col-md-4">
<h2>Shoes</h2>
<p>Original Shoes implementation.</p>
<a href='https://github.com/shoes/shoes'>Shoes on GitHub</a>
</div>
</div>
<div class="row">
<div class="col-md-4">
<h2>shoesrb.com</h2>
<p>Got some web skills? Help improving this website.</p>
<a href='https://github.com/shoes/shoesrb.com'>shoes.rb on GitHub</a>
</div>
<div class="col-md-4">
<h2>Mailing List</h2>
<p> There is a new mailing list since the old one fell into the bit bucket!
Sadly, you'll have to resubscribe and the archives will not be converted.
Discuss Shoes 3.x and Shoes 4, ask for help or pointers or just admire us. </p>
<a href="http://lists.mvmanila.com/listinfo.cgi/shoes-mvmanila.com">Subscribe here</a>
</div>
<div class="col-md-4">
<h2>Facebook</h2>
<p>We have a Facebook group. Let people know what Shoes can do. Meet other Shoes people. Post some screen shots of your application. Perhaps a video? Commercial promotion is fine with us as long as it's Shoes relevant. Have Fun!</p>
<a href='https://www.facebook.com/TinyGraphicsToolkit/'>Facebook</a>
</div>
</div>
</div>
</div>
<!-- community -->
<div class="row">
<div class="col-md-3">
</div>
<div class="col-md-9">
<div class="row">
<div class="col-md-12 community-spacing">
<hr>
<h1>C<i class="fa fa-github"></i>mmunity</h1>
<p>Contribute and become a part of the team! Many thanks to all who have kept the Shoes spirit alive and helped the project continue.</p>
</div>
</div>
<div class="row">
{% for member in site.data.community %}
{% assign member_data = member[1] %}
<div class="col-xs-6 col-md-2 team-member">
<img src="{{ member_data.avatar_url_100 }}">
<h4><a href="{{ member_data.html_url }}" target="_blank">{{member_data.login}}</a></h4>
<p>{{member_data.name}}</p>
</div>
{% endfor %}
</div>
</div>
</div>
</div>