-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (66 loc) · 3.06 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Sapporo.beam(サッポロビーム)</title>
<meta name="description" content="ErlangVM(BEAM)やそうでない話題についてわいわいやる集まりサッポロビームについて">
<meta name="keywords" content="ErlangVM,サッポロビーム,sapporo,beam">
</head>
<body>
<h1>Sapporo.beam(サッポロビーム)</h1>
<article>
<h2>サッポロビームとは何ですか</h2>
<div class="content">
<p>ErlangVM(BEAM)やそうでない話題についてわいわいやる集まりです.<br>だいたい毎週木曜日19:00-21:00すぎまで札幌グランドホテルのスターバックスの片隅でやっています.</p>
</div>
</article>
<article id="next-time">
<h2>次はいつやりますか</h2>
<div class="content">
<a href="https://github.com/sapporo-beam/sapporo-beam/issues?labels=meetup">githubのissue</a>をみてください.
</div>
</article>
<article>
<h2>これまでどんなことしてましたか</h2>
<div class="content">
これまでの活動は<a href="https://github.com/sapporo-beam/sapporo-beam/issues?labels=meetup&state=closed">githubのissue</a>をみてください.<br>
たまにRuby札幌と一緒にRubySapporo.beamというイベントをしています.
<ul>
<li><a href="https://rubysapporo.doorkeeper.jp/events/50956">RubySapporo.beam</a></li>
<li><a href="https://rubysapporo.doorkeeper.jp/events/57253">RubySapporo.beam#2</a></li>
<li><a href="https://rubysapporo.doorkeeper.jp/events/65693">RubySapporo.beam#3</a></li>
</ul>
</div>
</article>
<script src="js/markdown.min.js"></script>
<script>
const ready = (fn) => {
if (document.attachEvent ? document.readyState === "complete" : document.readyState !== "loading"){
fn();
} else {
document.addEventListener("DOMContentLoaded", fn);
}
};
const appendContent = () => {
const url = "https://api.github.com/repos/sapporo-beam/sapporo-beam/issues";
const request = new XMLHttpRequest();
request.open("GET", url, true);
request.onload = function() {
if (this.status >= 200 && this.status < 400) {
const data = JSON.parse(this.response);
if(data.length > 0) {
const nextMeetup = data[0];
const html = markdown.toHTML(nextMeetup.body);
const old = document.querySelector("#next-time div.content").innerHTML;
document.querySelector("#next-time div.content").innerHTML = old + "<p>issueの最新情報は以下のとおりです.<br>" + html + "</p>";
}
}
};
request.send();
};
ready(appendContent);
</script>
</body>
</html>