forked from limetext/limetext.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontribute.html
76 lines (67 loc) · 3.01 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
---
layout: default
title: Contribute to the Lime
---
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<h1>Made with <span class="text-danger">♥</span>, <a href="http://golang.org/">Go</a> and You!</h1>
<p>
We are all committed to making an easy-to-use, efficient and free text editor
for everyone.
</p>
<p>
The <a href="https://github.com/limetext/lime">Backend</a> itself is written in Go. If you
want to have a try at fixing some <a href="https://github.com/limetext/lime/issues">issues
we encounter</a>, go ahead and fork the project! If you need help at any point, just come
up on IRC to discuss with the others. Lime is still in an early stage but it is evolving along quickly.
</p>
<p>
The <a href="https://github.com/limetext/lime">Frontend</a> is written in
<span class="text-yellow">whatever GUI language suits you</span>! At the moment there are
termbox, Qt (QML) and HTML/JavaScript implementations. Dart and Skia are in discussion.
If one of these languages appeals to you, feel free to push the task forward and contribute
to the codebase!
</p>
<p>
The <a href="https://github.com/limetext/limetext.github.io">Website</a> is statically
generated via <a href="http://jekyllrb.com/">Jekyll</a> on
<a href="http://pages.github.com/">GitHub Pages</a>. We use the
<a href="http://getbootstrap.com/">Bootstrap Framework</a> and <a href="http://jquery.com/">jQuery</a>.
Fluent English writers are important to us as well, since Wikis and Documentation need to
be written. The story of the Lime has to be told <i class="fa fa-smile-o"></i>
</p>
<hr>
<h1>Contributors</h1>
<div class="row">
<div class="col-md-6">
<h3 class="text-yellow"><i class="fa fa-tasks"></i> Lime Backend</h3>
<ul id="committer-backend" class="list-inline committer-list"></ul>
</div>
<div class="col-md-6">
<h3 class="text-yellow"><i class="fa fa-desktop"></i> Lime Website</h3>
<ul id="committer-frontend" class="list-inline committer-list"></ul>
</div>
</div>
</div>
</div>
</div>
{% include extended_footer.html %}
<script>
function addToCommitterList (parent, list) {
$(parent).hide();
$.each(list, function (index, item) {
$(parent).append(
'<li><a href="' + item.html_url + '" data-toggle="tooltip" title="' + item.login + '">' +
'<img src="' + item.avatar_url + '" alt="' + item.login + '"></a></li>'
);
});
$(parent).fadeIn().find('a').tooltip();
}
$.getJSON('https://api.github.com/repos/limetext/lime/contributors', function (data) {
addToCommitterList($('#committer-backend'), data);
});
$.getJSON('https://api.github.com/repos/limetext/limetext.github.io/contributors', function (data) {
addToCommitterList($('#committer-frontend'), data);
});
</script>