-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
736 lines (368 loc) · 18.5 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
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
<!DOCTYPE html>
<!--[if IEMobile 7 ]><html class="no-js iem7"><![endif]-->
<!--[if lt IE 9]><html class="no-js lte-ie8"><![endif]-->
<!--[if (gt IE 8)|(gt IEMobile 7)|!(IEMobile)|!(IE)]><!--><html class="no-js" lang="en"><!--<![endif]-->
<head>
<meta charset="utf-8">
<title>Team POPONG blog</title>
<meta name="author" content="teampopong">
<meta name="description" content="안녕하세요.
한동안 팀 소식을 페이스북 페이지만으로 알리곤 했는데,
오늘은 정말 기쁜 소식이 있어 오랫동안 소홀했던 팀 블로그에 글을 쓰게 되었습니다. ">
<!-- http://t.co/dKP3o1e -->
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="canonical" href="http://blog.popong.com/">
<link href="/favicon.ico" rel="icon">
<link href="/stylesheets/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="/stylesheets/bootstrap-responsive.min.css" rel="stylesheet" type="text/css">
<link href="/stylesheets/colorbox.css" rel="stylesheet" type="text/css">
<link href="/stylesheets/screen.css" rel="stylesheet" type="text/css">
<script src="/javascripts/jquery-1.8.3.js"></script>
<script src="/javascripts/modernizr-2.6.js"></script>
<script src="/javascripts/octopress.js" type="text/javascript"></script>
<script src="/javascripts/jquery.colorbox.js" type="text/javascript"></script>
<script src="/javascripts/popong-colorbox.js" type="text/javascript"></script>
<link href="/atom.xml" rel="alternate" title="Team POPONG blog" type="application/atom+xml">
<link rel="publisher" href="https://plus.google.com/101073066416798453754">
<!--Fonts from Google"s Web font directory at http://google.com/webfonts -->
<link href="http://fonts.googleapis.com/css?family=PT+Serif:regular,italic,bold,bolditalic" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=PT+Sans:regular,italic,bold,bolditalic" rel="stylesheet" type="text/css">
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-34495737-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body >
<header role="banner"><div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="brand" href="http://popong.com/"><img src="http://popong.com/static/images/popong_w.png" width="80px" alt="popong logo"></a>
<div id="lang">
<ul class="nav-pills">
<li><a href="/en">en</a></li>
<li class="active"><a href="/ko">ko</a></li>
</ul>
</div>
<ul id="nav-rss" class="nav pull-right">
<li><a class="inline-box" href="#rss-box" rel="subscribe-rss" title="Subscribe to POPONG Blog via RSS" id="rss"><img src="http://popong.com/static/img/rss.png"></a></li>
</ul>
<form class="navbar-search pull-right" action="http://google.com/search" method="get">
<fieldset role="search">
<input type="hidden" name="q" value="site:blog.popong.com" />
<input class="search search-query" type="text" name="q" results="0" placeholder="Search"/>
</fieldset>
</form>
</div>
</div>
</div> <!-- end .navigation bar -->
<div style="display:none">
<div id="rss-box">
<div id="rss-ko" class="rss-option">
<a href="http://blog.popong.com/ko/atom.xml">한국어</a>
</div>
<div id="rss-en" class="rss-option">
<a href="http://blog.popong.com/en/atom.xml">English</a>
</div>
<div id="rss-all" class="rss-option">
<a href="http://blog.popong.com/atom.xml">English + 한국어</a>
</div>
</div>
</div>
<div id="github-ribbon">
<a href="https://github.com/teampopong"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_orange_ff7600.png" alt="Fork me on GitHub"></a>
</div>
</header>
<div id="container" class="container">
<nav role="navigation">
</nav>
<div id="main">
<div id="content">
<div class="blog-index">
<article>
<header>
<h1 class="entry-title">
<a href="/2014/05/27/meeting-page-open/">
이제 국회 회의록을 온라인으로도 보실 수 있습니다!
</a>
</h1>
<div class="meta">
<div class="meta-author">Posted by <span class="fn"><a href="http://twitter.com/echojuliett" target="_blank">@echojuliett</a></span></div>
<div class="meta-date">
<time datetime="2014-05-27T21:57:00+09:00" pubdate data-updated="true">May 27<span>th</span>, 2014</time>
</div>
</div>
</header>
<div class="entry-content"><p>안녕하세요.
한동안 팀 소식을 <a href="https://www.facebook.com/teampopong">페이스북 페이지</a>만으로 알리곤 했는데,
오늘은 정말 기쁜 소식이 있어 오랫동안 소홀했던 팀 블로그에 글을 쓰게 되었습니다.</p>
</div>
<footer>
<a class="btn" rel="full-article" href="/2014/05/27/meeting-page-open/">Read on →</a>
</footer>
<hr>
</article>
<article>
<header>
<h1 class="entry-title">
<a href="/2013/11/25/pokrbot-update/">
트위터 포커봇 업데이트
</a>
</h1>
<div class="meta">
<div class="meta-author">Posted by <span class="fn"><a href="http://twitter.com/cornchz" target="_blank">@cornchz</a></span></div>
<div class="meta-date">
<time datetime="2013-11-25T21:29:00+09:00" pubdate data-updated="true">Nov 25<span>th</span>, 2013</time>
</div>
</div>
</header>
<div class="entry-content"><p>오늘부터! <a href="http://twitter.com/pokrbot">@pokrbot</a>이 새로 발의된 의안을 소개드릴 때 대표발의의원의 트위터 계정도 함께 알려드립니다.</div>
<footer>
<a class="btn" rel="full-article" href="/2013/11/25/pokrbot-update/">Read on →</a>
</footer>
<hr>
</article>
<article>
<header>
<h1 class="entry-title">
<a href="/2013/11/18/pokr.kr-1000-commits/">
대한민국 정치의 모든 것 1,000 커밋!
</a>
</h1>
<div class="meta">
<div class="meta-author">Posted by <span class="fn"><a href="http://twitter.com/cornchz" target="_blank">@cornchz</a></span></div>
<div class="meta-date">
<time datetime="2013-11-18T10:27:00+09:00" pubdate data-updated="true">Nov 18<span>th</span>, 2013</time>
</div>
</div>
</header>
<div class="entry-content"><p><a href="http://pokr.kr">대한민국 정치의 모든 것</a> 소스코드가 1000번째 커밋<sup id="fnref:1"><a href="#fn:1" rel="footnote">1</a></sup>을 달성했습니다!</div>
<footer>
<a class="btn" rel="full-article" href="/2013/11/18/pokr.kr-1000-commits/">Read on →</a>
</footer>
<hr>
</article>
<article>
<header>
<h1 class="entry-title">
<a href="/2013/10/03/updates-ko/">
2013년 7, 8, 9월 업데이트 내역
</a>
</h1>
<div class="meta">
<div class="meta-author">Posted by <span class="fn"><a href="http://twitter.com/teampopong" target="_blank">@teampopong</a></span></div>
<div class="meta-date">
<time datetime="2013-10-03T18:00:00+09:00" pubdate data-updated="true">Oct 3<span>rd</span>, 2013</time>
</div>
</div>
</header>
<div class="entry-content"><p><a href="http://pokr.kr"><strong>대한민국 정치의 모든 것</strong></a>을 베타 오픈한지 벌써 4달, 여러분의 많은 관심과 피드백 덕분에 저희는 2달에 한 번씩 써오던 업데이트를 3달치 몰아서 써야 할 정도로 정신없는 나날들을 보냈습니다.<br><br>
팀포퐁은 지난 세 달간 이러한 일들을 했답니다 :)</p>
</div>
<footer>
<a class="btn" rel="full-article" href="/2013/10/03/updates-ko/">Read on →</a>
</footer>
<hr>
</article>
<article>
<header>
<h1 class="entry-title">
<a href="/2013/07/19/pokrs-contribution/">
포커(Pokr)가 국회 의안정보시스템과 다른게 뭐죠?
</a>
</h1>
<div class="meta">
<div class="meta-author">Posted by <span class="fn"><a href="http://twitter.com/echojuliett" target="_blank">@echojuliett</a></span></div>
<div class="meta-date">
<time datetime="2013-07-19T12:00:00+09:00" pubdate data-updated="true">Jul 19<span>th</span>, 2013</time>
</div>
</div>
</header>
<div class="entry-content"><p>어느덧 <a href="http://pokr.kr">포커(Pokr)</a> 베타오픈을 한 지 40여 일이 지났습니다.<br>
그 동안 <a href="mailto:[email protected]">이메일</a>, <a href="http://twitter.com/teampopong">트위터</a>, <a href="http://facebook.com/teampopong">페이스북</a>, <a href="http://teampopong.uservoice.com">피드백 포럼</a> 등을 통해 국내외에서 수없이 많은 관심과 응원을 받았고, <a href="/2013/07/13/weve-reached-1k-pokr-likes/">페이스북 라이크도 1K를 달성했습니다</a>.</p>
<p>오늘은 저희가 받은 많은 질문 중 의미있는 것을 한 가지를 꼽아, 공개답변을 드리도록 하겠습니다.</div>
<footer>
<a class="btn" rel="full-article" href="/2013/07/19/pokrs-contribution/">Read on →</a>
</footer>
<hr>
</article>
<article>
<header>
<h1 class="entry-title">
<a href="/2013/07/13/weve-reached-1k-pokr-likes/">
1K
</a>
</h1>
<div class="meta">
<div class="meta-author">Posted by <span class="fn"><a href="http://twitter.com/echojuliett" target="_blank">@echojuliett</a></span></div>
<div class="meta-date">
<time datetime="2013-07-13T16:23:00+09:00" pubdate data-updated="true">Jul 13<span>th</span>, 2013</time>
</div>
</div>
</header>
<div class="entry-content"><p><a href="http://pokr.kr">포커(Pokr)</a>를 세상에 내놓은지 한 달.<br>
페이스북 <code>좋아요</code> 개수 1K를 찍었습니다!</div>
<footer>
<a class="btn" rel="full-article" href="/2013/07/13/weve-reached-1k-pokr-likes/">Read on →</a>
</footer>
<hr>
</article>
<article>
<header>
<h1 class="entry-title">
<a href="/2013/07/10/feedback/">
피드백을 통해 함께 만들어가는 서비스
</a>
</h1>
<div class="meta">
<div class="meta-author">Posted by <span class="fn"><a href="http://twitter.com/jooddang" target="_blank">@jooddang</a></span></div>
<div class="meta-date">
<time datetime="2013-07-10T16:40:00+09:00" pubdate data-updated="true">Jul 10<span>th</span>, 2013</time>
</div>
</div>
</header>
<div class="entry-content"><p>포퐁 친구들 안녕?
오늘은 자랑글을 하나 써보려고 해요.</div>
<footer>
<a class="btn" rel="full-article" href="/2013/07/10/feedback/">Read on →</a>
</footer>
<hr>
</article>
<article>
<header>
<h1 class="entry-title">
<a href="/2013/07/03/updates-ko/">
2013년 5, 6월 업데이트 내역
</a>
</h1>
<div class="meta">
<div class="meta-author">Posted by <span class="fn"><a href="http://twitter.com/teampopong" target="_blank">@teampopong</a></span></div>
<div class="meta-date">
<time datetime="2013-07-03T16:00:00+09:00" pubdate data-updated="true">Jul 3<span>rd</span>, 2013</time>
</div>
</div>
</header>
<div class="entry-content"><p>지난 두 달간, <a href="http://pokr.kr">포커(Pokr; POlitics in KoRea)</a>를 런치하기 위해 팀포퐁은 전에 없던 바쁜 시간을 보냈습니다.
여러분께서 많은 관심과 피드백을 주신 덕분에 5, 6월은 저희에게 많은 것을 경험하고 배울 수 있었던 소중한 시간이었습니다.
정말 감사드립니다^^</div>
<footer>
<a class="btn" rel="full-article" href="/2013/07/03/updates-ko/">Read on →</a>
</footer>
<hr>
</article>
<article>
<header>
<h1 class="entry-title">
<a href="/2013/07/02/updates-en/">
Updates (May., Jun. 2013)
</a>
</h1>
<div class="meta">
<div class="meta-author">Posted by <span class="fn"><a href="http://twitter.com/teampopong" target="_blank">@teampopong</a></span></div>
<div class="meta-date">
<time datetime="2013-07-02T14:40:00+09:00" pubdate data-updated="true">Jul 2<span>nd</span>, 2013</time>
</div>
</div>
</header>
<div class="entry-content"><p>During the last two months, <a href="http://popong.com">Team POPONG</a> has experienced something very fascinating. We’ve beta launched our main service <a href="http://pokr.kr">Pokr</a>, and people are getting more and more interested in it. We’re getting lots of feedback, and a whole bunch of ‘first-time’ experiences.</div>
<footer>
<a class="btn" rel="full-article" href="/2013/07/02/updates-en/">Read on →</a>
</footer>
<hr>
</article>
<article>
<header>
<h1 class="entry-title">
<a href="/2013/06/30/logo-change/">
팀포퐁의 로고가 바뀌었어요!
</a>
</h1>
<div class="meta">
<div class="meta-author">Posted by <span class="fn"><a href="http://twitter.com/weirdclaire" target="_blank">@weirdclaire</a></span></div>
<div class="meta-date">
<time datetime="2013-06-30T02:54:00+09:00" pubdate data-updated="true">Jun 30<span>th</span>, 2013</time>
</div>
</div>
</header>
<div class="entry-content"><p><img src="/images/2013-06-30-popong-logo.png"></div>
<footer>
<a class="btn" rel="full-article" href="/2013/06/30/logo-change/">Read on →</a>
</footer>
<hr>
</article>
<div class="pagination">
<a class="prev" href="/blog/page/2/">← Older</a>
</div>
</div>
<aside class="sidebar">
</aside>
</div>
</div>
</div>
<footer class="container" role="contentinfo"><hr>
<div id="intro">
팀포퐁은 기술을 바탕으로 정치를 보다 쉽고 재미있게 하기 위한 비영리, 무소속의 중립적 단체입니다.<br>
Team POPONG is a nonprofit, nonpartisan group in Korea that aims to make politics easy and fun via technology.
</div>
<div id="copyright">
<p>© 2011-2013 <a href="mailto:[email protected]">Team POPONG</a></p>
</div>
<div id="sociallinks">
<div id="fb" class="fb-like" data-href="http://facebook.com/teampopong" data-send="false" data-layout="button_count" data-width="450" data-show-faces="false"></div>
<div id="tw">
<a href="https://twitter.com/teampopong" class="twitter-follow-button" data-show-count="true" data-lang="en" data-size="small">Follow</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</div>
</div>
<div id="directlinks">
<a href="http://facebook.com/teampopong" target="_blank" title="facebook"><img class="icons" src="http://popong.com/static/images/icon-facebook.png" alt="facebook logo"></a>
<a href="http://twitter.com/teampopong" target="_blank" title="twitter"><img class="icons" src="http://popong.com/static/images/icon-twitter.png" alt="twitter logo"></a>
<a href="http://vimeo.com/teampopong" target="_blank" title="vimeo"><img class="icons" src="http://popong.com/static/images/icon-vimeo.png" alt="vimeo logo"></a>
<a href="http://slideshare.com/teampopong" target="_blank" title="slideshare"><img class="icons" src="http://popong.com/static/images/icon-slideshare.png" alt="slideshare logo"></a>
<a href="http://github.com/popong" target="_blank" title="github"><img class="icons" src="http://popong.com/static/images/icon-github.png" alt="github logo"></a>
</div>
</footer>
<script type="text/javascript">
var disqus_shortname = 'teampopong-ko';
var disqus_script = 'count.js';
(function () {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://' + disqus_shortname + '.disqus.com/' + disqus_script;
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
}());
</script>
<div id="fb-root"></div>
<script>(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 = "//connect.facebook.net/en_US/all.js#appId=212934732101925&xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<script type="text/javascript">
(function() {
var script = document.createElement('script'); script.type = 'text/javascript'; script.async = true;
script.src = 'https://apis.google.com/js/plusone.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(script, s);
})();
</script>
<script type="text/javascript">
(function(){
var twitterWidgets = document.createElement('script');
twitterWidgets.type = 'text/javascript';
twitterWidgets.async = true;
twitterWidgets.src = 'http://platform.twitter.com/widgets.js';
document.getElementsByTagName('head')[0].appendChild(twitterWidgets);
})();
</script>
<script src="/javascripts/bootstrap-transition.js"></script>
<script src="/javascripts/bootstrap-collapse.js"></script>
</body>
</html>