-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
465 lines (378 loc) · 16.2 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Google font -->
<link href="https://fonts.googleapis.com/css?family=Lato:700%7CMontserrat:400,600" rel="stylesheet">
<!-- Bootstrap -->
<link type="text/css" rel="stylesheet" href="css/bootstrap.min.css"/>
<!-- Font Awesome Icon -->
<link rel="stylesheet" href="css/font-awesome.min.css">
<!-- Custom stlylesheet -->
<link type="text/css" rel="stylesheet" href="css/style.css"/>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-133680862-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-133680862-1');
</script>
<meta name="description" content="DevOps Taiwan 社群成立于 2015/5/21,由多位關注 DevOps 相關資訊的 IT、軟體界朋友一起共同創立,期望透過社群互動的方式建立一個平台提供台灣的社群朋友可以一起針對 DevOps 相關的議題、專案、技術與工作進行分享與交流。">
<meta property="og:image" content="http://devopstw.club/img/fotos/5.jpg">
<meta property="og:url" content="http://devopstw.club">
<meta property="og:description" content="DevOps Taiwan 社群成立于 2015/5/21,由多位關注 DevOps 相關資訊的 IT、軟體界朋友一起共同創立,期望透過社群互動的方式建立一個平台提供台灣的社群朋友可以一起針對 DevOps 相關的議題、專案、技術與工作進行分享與交流。">
<meta property="og:site_name" content="DevOps Taiwan Community | DevOps 台灣社群">
<title>DevOps Taiwan Community | DevOps 台灣社群</title>
<link rel="apple-touch-icon" sizes="57x57" href="icon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="icon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="icon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="icon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="icon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="icon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="icon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="icon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="icon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="icon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="icon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="icon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="icon/favicon-16x16.png">
</head>
<body>
<!-- Load Facebook SDK for JavaScript -->
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function () {
FB.init({
xfbml: true,
version: 'v3.2'
});
};
(function (d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = 'https://connect.facebook.net/zh_TW/sdk/xfbml.customerchat.js';
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<!-- Your customer chat code -->
<div class="fb-customerchat" attribution=setup_tool page_id="1442999589110266" theme_color="#20cef5"
logged_in_greeting="歡迎光臨 DevOps Taiwan,有什麼我們可以為您服務的嗎?" logged_out_greeting="歡迎光臨 DevOps Taiwan,有什麼我們可以為您服務的嗎?">
</div>
<!-- Header -->
<header id="header" class="transparent-nav">
<div class="container">
<div class="navbar-header">
<!-- Logo -->
<div class="navbar-brand">
<a class="logo" href="index.html">
<img src="./img/devops_logo-alt.png" alt="logo">
</a>
</div>
<!-- /Logo -->
<!-- Mobile toggle -->
<button class="navbar-toggle">
<span></span>
</button>
<!-- /Mobile toggle -->
</div>
<!-- Navigation -->
<nav id="nav">
<ul class="main-menu nav navbar-nav navbar-right">
<li><a href="#meetup">活動資訊</a></li>
<li><a href="#about">關於我們</a></li>
<li><a href="https://github.com/DevOpsTW/jobs/issues">自助徵才</a></li>
<li><a href="http://cfs.devopstw.club/">投稿</a></li>
<li><a href="http://sponsor.devopstw.club/">贊助與合作</a></li>
<li><a href="https://devopsdays.tw">DevOpsDays Taipei</a></li>
</ul>
</nav>
<!-- /Navigation -->
</div>
</header>
<!-- /Header -->
<!-- Home -->
<div id="home" class="hero-area">
<!-- Backgound Image -->
<div class="bg-image bg-parallax overlay" style="background-image:url(./img/header.jpg)"></div>
<!-- /Backgound Image -->
<div class="home-wrapper">
<div class="container">
<div class="row">
<div class="col-md-8">
<h1 class="white-text">DevOps Taiwan Community</h1>
<p class="lead white-text">建立屬於 DevOps 實踐家的互助交流社群空間!</p>
<a class="main-button icon-button" href="https://www.facebook.com/DevOpsTaiwan">最新活動資訊請參閱 FB 粉專</a>
</div>
</div>
</div>
</div>
</div>
<!-- /Home -->
<!-- About -->
<div id="about" class="section">
<!-- container -->
<div class="container">
<!-- row -->
<div class="row">
<div class="col-md-6">
<div class="section-header">
<h2>關於 DevOps Taiwan Community</h2>
<p class="lead">創建互助、互信、互利的 DevOps 社群空間!</p>
</div>
<!-- feature -->
<div class="feature">
<img src="./img/about-1.png" class="feature-icon">
<div class="feature-content">
<h4>組織戰隊</h4>
<p>DevOps Taiwan Community 集結各界好手,組織志工、人才,進行各項 DevOps 議題研討,培養經驗與戰鬥力,當然還不忘帶著歡樂積極的態度!</p>
<a href="http://cfs.devopstw.club/" class="btn btn-info">加入我們</a>
</div>
</div>
<!-- /feature -->
<!-- feature -->
<div class="feature">
<img src="./img/about-2.png" class="feature-icon">
<div class="feature-content">
<h4>發起活動</h4>
<p>由 DevOps Taiwan Community 志工戰隊共同發起各種知識與樂趣兼具的活動,帶動 DevOps 的精神,並且促進業界交流,共同凝聚人才分享、協作,持續整合!</p>
<a href="http://cfs.devopstw.club/" class="btn btn-info">一同發起</a>
</div>
</div>
<!-- /feature -->
<!-- feature -->
<div class="feature">
<img src="./img/about-3.png" class="feature-icon">
<div class="feature-content">
<h4>多元合作結盟</h4>
<p>社群互動、人才匯集,來自社群好手多方合作,為台灣 IT 產業創造更多元、豐富的價值!邀請您一起參與各項提案、文章撰寫、贊助,「多元合作結盟」強強聯手!</p>
<a href="http://sponsor.devopstw.club/" class="btn btn-info">即刻聯手</a>
</div>
</div>
<!-- /feature -->
</div>
<div class="col-md-6">
<div class="about-img">
<img src="./img/about-devops-taiwan.png" alt="">
</div>
</div>
</div>
<!-- row -->
</div>
<!-- container -->
</div>
<!-- /About -->
<!-- Courses -->
<div id="meetup"></div>
<div id="courses" class="section">
<!-- container -->
<div class="container">
<!-- row -->
<div class="row">
<div class="section-header text-center">
<h2>最新活動資訊</h2>
<p class="lead">DevOps Taiwan Community 平均每個月都會舉辦一場活動,歡迎隨時關注我們的最新活動資訊!</p>
</div>
</div>
<!-- /row -->
<!-- courses -->
<div id="courses-wrapper">
<!-- row -->
<div class="row">
<!-- single course -->
<div class="col-md-3 col-sm-6 col-xs-6">
<div class="course">
<a href="https://devopsdays.tw" class="course-img">
<img src="./img/event-devopsdays.jpg" alt="">
<i class="course-link-icon fa fa-link"></i>
</a>
<a class="course-title" href="https://devopsdays.tw">DevOpsDays Taipei</a>
<p>一年一度的 DevOps 盛會</p>
<p>一起來分享您的 DevOps 經驗!</p>
<div class="course-details">
<span class="course-category">Conference</span>
<span class="course-price course-premium"></span>
</div>
</div>
</div>
<!-- /single course -->
<!-- single course -->
<div class="col-md-3 col-sm-6 col-xs-6">
<div class="course">
<a href="https://www.facebook.com/DevOpsTaiwan/" class="course-img">
<img src="./img/event-fb-page.jpg" alt="">
<i class="course-link-icon fa fa-link"></i>
</a>
<a class="course-title" href="https://www.facebook.com/DevOpsTaiwan/">DevOps Taiwan FB Page</a>
<p>未來活動資訊將公佈在 FB 粉絲專頁</p>
<p>立即追蹤粉專,掌握最新活動資訊!</p>
<div class="course-details">
<span class="course-category">Community</span>
</div>
</div>
</div>
<!-- /single course -->
<!-- single course -->
<div class="col-md-3 col-sm-6 col-xs-6">
<div class="course">
<a href="http://fb.devopstw.club" class="course-img">
<img src="./img/event-community.jpg" alt="">
<i class="course-link-icon fa fa-link"></i>
</a>
<a class="course-title" href="http://fb.devopstw.club">DevOps Taiwan FB Group</a>
<p>未來活動資訊亦會公佈於 FB 社團</p>
<p>還請多多加入社群,參與互動!</p>
<div class="course-details">
<span class="course-category">Community</span>
</div>
</div>
</div>
<!-- /single course -->
</div>
<!-- /row -->
</div>
<!-- /courses -->
<!-- <div class="row">
<div class="center-btn">
<a class="main-button icon-button" href="#">More Courses</a>
</div>
</div> -->
</div>
<!-- container -->
</div>
<!-- /Courses -->
<!-- Call To Action -->
<div id="cta" class="section">
<!-- Backgound Image -->
<div class="bg-image bg-parallax overlay" style="background-image:url(./img/sponsor-background.jpg)"></div>
<!-- /Backgound Image -->
<!-- container -->
<div class="container">
<!-- row -->
<div class="row">
<div class="col-md-6">
<h2 class="white-text">贊助與合作提案</h2>
<p class="lead white-text">DevOps Taiwan Community 由多位志工共同經營,我們對於各種合作提案皆採取開放態度,歡迎有興趣的朋友與我們聯繫,共同舉辦各式各樣與 DevOps 主題相關之活動。</p>
<a class="main-button icon-button" href="http://sponsor.devopstw.club/">贊助與合作提案</a>
</div>
</div>
<!-- /row -->
</div>
<!-- /container -->
</div>
<!-- /Call To Action -->
<!-- Why us -->
<div id="why-us" class="section">
<!-- container -->
<div class="container">
<!-- row -->
<div class="row">
<div class="col-md-6">
<h3>The Road to DevOps.</h3>
<p class="lead">一段旅程,一個故事!DevOps Taiwan Community 邀請您分享屬於您的 DevOps Journey。</p>
<p>不論規模,個人或團隊,我們都期待聽到您的 DevOps 故事!期盼透過各個 DevOps 實踐家的經驗分享,讓更多人知道在這條邁向 DevOps 的旅程中,你我並不孤單!</p>
<a class="main-button icon-button" href="http://cfs.devopstw.club">我要分享!</a>
<a class="main-button icon-button" href="https://www.youtube.com/@devopstaiwan">觀賞過往活動紀錄!</a>
</div>
<div class="col-md-5 col-md-offset-1">
</div>
</div>
<!-- /row -->
</div>
<!-- /container -->
</div>
<!-- /Why us -->
<!-- Contact CTA -->
<div id="contact-cta" class="section">
<!-- Backgound Image -->
<div class="bg-image bg-parallax overlay" style="background-image:url(./img/header.jpg)"></div>
<!-- Backgound Image -->
<!-- container -->
<div class="container">
<!-- row -->
<div class="row">
<div class="col-md-8 col-md-offset-2 text-center">
<h2 class="white-text">Contact Us</h2>
<p class="lead white-text">
對於 DevOps Taiwan Community 有任何想法與建議,皆歡迎讓我們知道!<br />
你可以直接透過本網頁右下角的 Facebook Messenger 與志工們聯繫!<br />
或前往 Facebook 粉絲專頁或社團留言。
</p>
<a class="main-button icon-button" href="https://www.facebook.com/DevOpsTaiwan/">Contact Us Now</a>
</div>
</div>
<!-- /row -->
</div>
<!-- /container -->
</div>
<!-- /Contact CTA -->
<!-- Footer -->
<footer id="footer" class="section">
<!-- container -->
<div class="container">
<!-- row -->
<div class="row">
<!-- footer logo -->
<div class="col-md-4">
<div class="footer-logo">
<a class="logo" href="index.html">
<img src="./img/devops_logo.png" alt="logo">
</a>
</div>
</div>
<!-- footer logo -->
<!-- footer nav -->
<div class="col-md-8">
<ul class="footer-nav">
<li><a href="#meetup">活動資訊</a></li>
<li><a href="#about">關於我們</a></li>
<li><a href="https://github.com/DevOpsTW/jobs/issues">自助徵才</a></li>
<li><a href="http://cfs.devopstw.club/">投稿</a></li>
<li><a href="http://sponsor.devopstw.club/">贊助與合作</a></li>
<li><a href="https://devopsdays.tw">DevOpsDays Taipei</a></li>
</ul>
</div>
<!-- /footer nav -->
</div>
<!-- /row -->
<!-- row -->
<div id="bottom-footer" class="row">
<!-- social -->
<div class="col-md-4 col-md-push-8">
<ul class="footer-social">
<li><a href="https://www.facebook.com/DevOpsTaiwan/" class="facebook"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://www.facebook.com/groups/DevOpsTaiwan/" class="facebook"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://www.youtube.com/@devopstaiwan" class="youtube"><i class="fa fa-youtube"></i></a></li>
</ul>
</div>
<!-- /social -->
<!-- copyright -->
<div class="col-md-8 col-md-pull-4">
<div class="footer-copyright">
<span>© Copyright 2019. All Rights Reserved. | This template is made with <i class="fa fa-heart-o" aria-hidden="true"></i> by <a href="https://colorlib.com">Colorlib</a></span>
</div>
</div>
<!-- /copyright -->
</div>
<!-- row -->
</div>
<!-- /container -->
</footer>
<!-- /Footer -->
<!-- preloader -->
<div id='preloader'><div class='preloader'></div></div>
<!-- /preloader -->
<!-- jQuery Plugins -->
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>