-
Notifications
You must be signed in to change notification settings - Fork 7
/
community.html
97 lines (74 loc) · 3.43 KB
/
community.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
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<!--# include file="/templates/header.html" -->
<title>Egison - Community</title>
</head>
<body data-spy="scroll" data-target=".bs-sidebar" data-offset="0">
<!--# include file="/templates/navbar.html" -->
<div class="container manual">
<div class="row">
<div class="col-md-12" id="top" role="complementary">
<h1>Egison Community</h1>
</div>
</div>
<div class="row">
<div class="col-md-12" role="main">
<h2>Mailing List</h2>
<p>
We have a maling list to share the current status and issues.<br/>
If you would like to subscribe, please contact <a href="/~egi/">Satoshi Egi</a> or enter your mail address in the form below and push the subscribe button.
</p>
<div style="margin-top:10px;">
<label style="font-size:14px;">Email address</label><br/>
<input id="email" style="width: 250px;">
<button id="subscribe" class="btn btn-lg btn-primary" data-loading-text="Processing..." role="button">Subscribe »</button>
</div>
<h2>SNS</h2>
<p>
Egison on <a href="https://twitter.com/Egison_Lang" target="_blank">Twitter</a>. Please follow us!<br/>
Egison on <a href="https://plus.google.com/100607965943061517334" target="_blank">Google+</a>.<br/>
Egison on <a href="https://www.facebook.com/egison.lang" target="_blank">Facebook</a>.<br/>
Egison on <a href="https://github.com/egison" target="_blank">GitHub</a>.<br/>
Egison on <a href="https://egison.slack.com" target="_blank">Slack</a>.<br/>
Egison on <a href="http://rosettacode.org/wiki/Category:Egison" target="_blank">Rosseta Code</a>.<br/>
Egison on <a href="https://hn.algolia.com/?q=egison#!/story/forever/prefix/0/egison%20-edison%20-elison%20-egibson" target="_blank">Hacker News</a>.<br/>
Egison on <a href="http://www.reddit.com/domain/egison.org/" target="_blank">Reddit</a>.<br/>
Please check them!
</p>
<h2>Workshop</h2>
<p>
We will hold Egison Workshop in near future in Tokyo.
</p>
<h2>Contact Us!</h2>
<p>
Please give us feedback.
Please contact <a href="/~egi/">Satoshi Egi</a>.
</p>
<h2>Logo</h2>
<p>
<a href="/logo.html">Egison Logos</a> are available under <a target="_blank" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution ShareAlike (CC BY-SA)</a>.
</p>
</div>
</div><!--/row-->
<hr class="divider">
<div class="row">
<!--# include file="/templates/disqus-main.html" -->
</div><!--/row-->
</div><!-- /.container -->
<!--# include file="/templates/footer.html" -->
<script>
$(document).ready(function(){
$('.btn').button()
$('#subscribe').click(function() {
$('#subscribe').prop("disabled", true);
$('#subscribe').html("Processing...");
$.post("/api/subscribe", { email: document.getElementById("email").value }, function(data) {
$('#subscribe').html("Accepted!");
$('#subscribe').prop("disabled", true);
}, "json");
});
});
</script>
</body>
</html>