-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (89 loc) · 3.54 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!doctype html>
<html lang="en">
<head>
<title>TFUG Japan</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="shortcut icon" href="img/favicon.ico" />
<script src="scripts/jquery-2.1.4.min.js"></script>
<link rel="stylesheet" href="lib/mdl/material.min.css">
<link rel="stylesheet" href="css/common.css">
<link rel="stylesheet" href="css/index.css">
<!-- Optional JavaScript -->
<script src="scripts/purl.js"></script>
<script src="scripts/global.js"></script>
<!-- Material Design Lite -->
<script src="lib/mdl/material.min.js"></script>
<link rel="stylesheet" href="//fonts.googleapis.com/icon?family=Material+Icons">
</head>
<body>
<header>
<div class="header-logo">
<a href="/"><img src="img/logo.png"></a>
</div><div class="header-title">
<a href="/">TFUG Japan</a>
</div></header>
<div class="main">
<div class="side-menu">
<div>
<a href="/">
<button class="mdl-button mdl-js-button mdl-js-ripple-effect" id="menu_top">
トップ
</button>
</a>
</div>
<div>
<a href="tfugevent.html">
<button class="mdl-button mdl-js-button mdl-js-ripple-effect" id="menu_event">
イベント
</button>
</a>
</div>
<div>
<a href="organization.html">
<button class="mdl-button mdl-js-button mdl-js-ripple-effect" id="menu_organization">
拠点
</button>
</a>
</div>
</div>
<div class="content">
<div class="top-logo">
<img src="img/logo_big.png">
</div>
<h4>
What is TFUG?
</h4>
<div>
<p>TensorFlow User Group (TFUG) は有志による TensorFlow のコミュニティです。</p>
<p>TFUG は以下のような人を歓迎します:</p>
<ul>
<li>TensorFlow を使っている人</li>
<li>他のフレームワークを使っているけれど TensorFlow にも興味がある人</li>
<li>現在 TensorFlow を使っていないけれど興味がある人</li>
</ul>
<p>所属や肩書は問わず、様々なバックグラウンドを持つ人に参加して頂けると嬉しいです。</p>
</div>
<h4>
SNS
</h4>
<div>
<p>現在は Facebook のコミュニティと Slack の team があります。</p>
<ul>
<li><a href="https://join.slack.com/t/tfug/shared_invite/enQtNjc4MzY2NDE5NTUzLWJjMDYyOGJhYTA5NzE1ODdiN2Y3OTQ5ZTZhOTA4NDBlMjcwYTRlNzgwMjBlZjRlNjkwOTFkYzJiNzY3YmFhYmU">Slack</a></li>
<li><a href="https://www.facebook.com/groups/178559235921208/">Facebook</a></li>
</ul>
</div>
<h4>
EVENT
</h4>
<div>
<p>イベントの開催は主に Connpass を使用しています。各詳細については<a href="tfugevent.html">イベント</a>を参照してください。</p>
</div>
</div>
</div>
<footer>
</footer>
</body>
</html>