-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathabout.html
67 lines (59 loc) · 2.46 KB
/
about.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
---
layout: default
title: About
description: Informations about Hackatron and Hackatron's team
---
<div id="about">
<h2>About</h2>
<p>
We're an independent group of developers, designers, tinkers, troublemakers, and freethinkers.
We want to have fun building things, learning something new, experiencing, and sharing.<br/>
We're Hackatron.
</p>
<h2 id="irc">IRC</h2>
<p>
You can chat with Hackatron's team (or <a href="https://github.com/hackatron/hackatron-hubot">Hackabot</a> when no one is online) about software and life by joining the <a href="irc://irc.freenode.net/hackatron">#hackatron</a> channel at irc.freenode.net.
</p>
<iframe src="http://webchat.freenode.net/?channels=hackatron" width="100%" height="600" frameborder="0"></iframe>
<h2 id="slack">Slack</h2>
<p>
You can also find us on Slack under the <a href="https://hackatron-slackin.herokuapp.com/">Hackatron fioi</a> team.
</p>
<h2 id="organization">Organization</h2>
<p>
Source of this blog and projects' code can be found at <a href="http://github.com/hackatron">http://github.com/hackatron</a>.
</p>
<h2 id="community">Community</h2>
<p>
Join <a href="https://plus.google.com/u/0/communities/114208088492148430770">Hackatron community</a> or <a href="https://groups.google.com/d/forum/hackatron">Hackatron group</a> to stay updated on upcoming events.
</p>
<h2 id="people">People</h2>
<ul class="unstyled" id="people_list"></ul>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script src="//rawgithub.com/potomak/jquery-github/master/jquery.github.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#people_list").github({
organization: 'hackatron'
, onComplete: function(response) {
var length = typeof response.data != 'undefined' ? response.data.length : 0;
console.log(response);
if(length > 0) {
for(var i = 0; i < length; i++) {
this.append("<li>"
+ "<img src='" + response.data[i].avatar_url + "' width='48'/>"
+ "<p>"
+ "<a href='http://github.com/" + response.data[i].login + "'>http://github.com/" + response.data[i].login + "</a>"
+ "</p>"
+ "</li>"
);
}
}
else {
this.html("Nobody");
}
}
});
});
</script>