-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (66 loc) · 2.48 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta content="width=device-width; initial-scale=1.0; user-scalable=no;" name="viewport" />
<meta name="keywords" content="Gotanda.js,JavaScript,Node.js,コミュニティ,プログラミング,勉強会,五反田,東京">
<meta name="description" content="Gotanda.js は五反田を中心に活動する JavaScript ユーザーのコミュニティです。">
<title>Gotanda.js</title>
<link rel="icon" href="/assets/icon.png" />
<link rel="apple-touch-icon" href="/assets/icon.png" />
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Montserrat:700" />
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css" />
<link rel="stylesheet" href="/assets/style.css" />
<script src="//cdn.hotolab.net/slack-invite-form.min.js"></script>
<script src="/assets/analytics.js"></script>
<script src="/assets/gorhill-voronoi.js"></script>
<script src="/assets/voronoi.js"></script>
<script>
window.onload = function() {
voronoi( document.getElementById('voronoi') );
renderSlackInviteForm('slack_form', 'https://api.hotolab.net/gotandajs/slack');
};
</script>
</head>
<body>
<header>
<canvas id='voronoi'></canvas>
<h1>Gotanda.js</h1>
</header>
<section>
<h2>About</h2>
<p>
Gotanda.js (ごたじぇー) は五反田を中心に活動する JavaScript ユーザーのコミュニティです。
イベント(勉強会)を定期的に開催したり、Slack で JavaScript に関する雑談をしていたりします。
五反田近辺の方に限らず、JavaScript に興味があればどなたでも歓迎いたします。
</p>
</section>
<section>
<h2>Next Event</h2>
<span>
<a href="https://gotandajs.connpass.com/event/165002/" target="_blank">
2020/2/28 (金) 19:30〜<br>
Gotanda.js #14 in adish
</a>
</span>
</section>
<section id="slack">
<h2>Join Slack</h2>
<p>
以下のフォームにメールアドレスを入力すると Slack 部屋への招待メールをお送りします。
気軽にご参加ください!
</p>
<div id="slack_form"></div>
</section>
<section>
<h2>Contact</h2>
<p>
質問等ありましたら Slack や Twitter で
<a href="https://twitter.com/gotandajs" target="_blank">@gotandajs</a>
までお問い合わせください。
</p>
</section>
<footer>
</footer>
</body>
</html>