-
Notifications
You must be signed in to change notification settings - Fork 0
/
post.html
1242 lines (1204 loc) · 70.8 KB
/
post.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
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<!-- when Korean is breaking -->
<!-- https://tysoso.tistory.com/6 -->
<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>게시글</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://kit.fontawesome.com/69fe52bc75.js" crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" href="css/fboard.css">
<link rel="stylesheet" type="text/css" href="css/link.css">
<link rel="stylesheet" type="text/css" href="css/chatList.css">
<link rel="stylesheet" type="text/css" href="css/home.css">
<link rel="stylesheet" type="text/css" href="css/post.css">
<script src="javascript/chat.js" defer></script>
<script src="javascript/join.js" defer></script>
<script src="javascript/link.js" defer></script>
<script src="javascript/post.js"></script>
<style></style>
</head>
<body>
<!-- desktop header -->
<div class="parallax_page">
<div id="group2" class="parallax">
<div class="overlay"></div>
<header id="header">
<div class="container">
<div class="header">
<div class="header_title">
<a href="#" class="header_title_img">
<div>위세종<span>wesju</span></div>
</a>
<!-- <a href="#" class="header_title_img"><img src="https://via.placeholder.com/200x60" width="200" height="60" alt="wesejong"/></a> 나중에는 아마 이미지를 사용할것입니다. 이미지 관련해서 아래가 뜨는것은 https://blog.naver.com/jhc9639/222174944051-->
</div>
<div class="header_search">
<input type="text" placeholder="search..." />
<button type="button">검색</button>
</div>
<div class="header_menu">
<div class="header_menu_intro">
<a href="#" class="header_menu_intro_a notice" onmouseover="show_alarm()">알림<span
class="unread">˚</span></a>
<a href="#" class="header_menu_intro_a chat" onmouseover="show_chat()">채팅</a>
<a href="#" class="header_menu_intro_a mypost" onmouseover="show_post()">내가쓴글</a>
<a href="#" class="header_menu_intro_a privacypolicy">정보수정</a>
<div class="header_menu_signinbox">
<!--로그인 전-->
<a href="#" class="header_menu_intro_a header_signinbox_span signin"><span>로그인</span></a>
<span class="header_menu_intro header_signinbox_span">|</span>
<a href="#" class="header_menu_intro_a header_signinbox_span join"><span>회원가입</span></a>
<!--로그인 후
<span class="header_menu_intro_a header_signinbox_span enter_wesju">"<a href="#">어린이대공원</a>"님 환영합니다.</span>-->
</div>
</div>
<!--알림목록-->
<section>
<div class="alarm_list">
<table>
<tr>
<td><span>이용자1가 <a href="#">자유게시판</a> 게시글 "<a href="#">공지사항</a>"에 댓글을 남겼습니다. </span><a href="#"
class="alarm_list_cmt"><i class="fas fa-arrow-right"></i> "안녕하세요 컴퓨터공학과 18학번 세종대왕입니다." </a>
</td>
<td></td>
</tr>
<tr>
<td><span>이용자1가 <a href="#">자유게시판</a> 게시글 "<a href="#">공지사항</a>"에 댓글을 남겼습니다. </span><a href="#"
class="alarm_list_cmt"><i class="fas fa-arrow-right"></i> "안녕하세요 컴퓨터공학과 18학번 세종대왕입니다." </a>
</td>
<td></td>
</tr>
<tr>
<td><span>이용자1가 <a href="#">자유게시판</a> 게시글 "<a href="#">공지사항</a>"에 댓글을 남겼습니다. </span><a href="#"
class="alarm_list_cmt"><i class="fas fa-arrow-right"></i> "안녕하세요 컴퓨터공학과 18학번 세종대왕입니다." </a>
</td>
<td></td>
</tr>
<tr>
<td><span>이용자1가 <a href="#">자유게시판</a> 게시글 "<a href="#">공지사항</a>"에 댓글을 남겼습니다. </span><a href="#"
class="alarm_list_cmt"><i class="fas fa-arrow-right"></i> "안녕하세요 컴퓨터공학과 18학번 세종대왕입니다." </a>
</td>
<td></td>
</tr>
<tr>
<td><span>이용자2가 <a href="#">자유게시판</a> 게시글 "<a href="#">공지사항</a>"에 댓글을 남겼습니다.</span></td>
</tr>
<tr>
<td><span>이용자3가 <a href="#">자유게시판</a> 게시글 "<a href="#">공지사항</a>"에 댓글을 남겼습니다.</span></td>
</tr>
<tr>
<td><span>이용자5가 <a href="#">자유게시판</a> 게시글 "<a href="#">공지사항</a>"에 댓글을 남겼습니다.</span></td>
</tr>
<tr>
<td><span>이용자6가 <a href="#">자유게시판</a> 게시글 "<a href="#">공지사항</a>"에 댓글을 남겼습니다.</span></td>
</tr>
<tr>
<td><span>이용자2가 <a href="#">자유게시판</a> 게시글 "<a href="#">공지사항</a>"에 댓글을 남겼습니다.</span></td>
</tr>
<tr>
<td><span>이용자2가 <a href="#">자유게시판</a> 게시글 "<a href="#">공지사항</a>"에 댓글을 남겼습니다.</span></td>
</tr>
<tr>
<td><span>관리자로부터 채팅이 왔습니다.</span></td>
</tr>
</table>
</div>
</section>
<!--채팅목록-->
<section>
<div class="chat_list">
<table>
<tr onclick="open_chat()">
<td><img src="img/profile.jpg" /></td>
<td><span class="contactor">이용자2</span></td>
</tr>
<tr>
<td><img src="img/profile.jpg" /></td>
<td><span class="contactor">관리자</span></td>
</tr>
</table>
</div>
</section>
<!--내가쓴글 목록-->
<section>
<div class="post_list">
<table>
<tr>
<td> 선거운동은 각급 선거관리위원회의 관리하에 법률이 정하는 범위안에서 하되, 균등한 기회가 보장되어야 한다. </td>
<td>2015.03.22</td>
</tr>
<tr>
<td><span>공지사항2</span></td>
<td>2015.03.22</td>
</tr>
<tr>
<td><span>공지사항3</span></td>
<td>2015.03.22</td>
</tr>
</table>
</div>
</section>
</div>
<div class="header_icon">
<!-- I have no idea
<ul>
<li><a href="#"><span>HTML5</span></a></li>
<li><a href="#"><span>HTML5</span></a></li>
<li><a href="#"><span>HTML5</span></a></li>
<li><a href="#"><span>HTML5</span></a></li>
</ul> -->
</div>
</div>
</div>
</header>
<!-- mobile header -->
<header id="mobile_header">
<div class="mobile_container">
<div class="mobile_header">
<div class="mobile_header_sidebar">
<!-- https://kutar37.tistory.com/entry/%EC%82%AC%EC%9D%B4%EB%93%9C%EB%B0%94-%EC%99%B8%EB%B6%80%ED%81%B4%EB%A6%AD%EC%8B%9C-%EC%88%A8%EA%B8%B0%EA%B8%B0 -->
<!-- http://v2.eyoom.net/bbs/board.php?bo_table=js&wr_id=7 -->
<!-- https://www.youtube.com/watch?v=O9l75KOB2pE -->
<!-- hamburger left menu -->
<a href="#" onclick="drop_down_mobile_menu()"><i
class="hamburger sidebarCollapse fas fa-bars 4px"></i></a>
<!-- when you click hamburger -->
<div class="sidebar">
<div class="sidebar_signinbox">
<a href="#" class="sidebar_signinbox_span signin"><span><i
class="fas fa-sign-in-alt 5px"></i>로그인</span></a>
<a href="#" class="sidebar_signinbox_span join"><span>회원가입</span></a>
</div>
<div class="sidebar_nav"></div>
<!--소메뉴 클릭 시 메뉴바 닫히면서 링크따라 이동-->
<div class="sidebar_img">
<img src="img/교포1.jpg">
</div>
<div class="sidebar_ul">
<ul>
<li class="parent_menu home"><a href="#"><i class="fas fa-home"></i>HOME</a></li>
<li class="parent_menu parent_menu_havesub features"><a href="#"><i
class="fas fa-smile"></i>Community><i class="fas fa-angle-up"></i></a>
<ul class="sub_ul sub1">
<li class="sub_menu"><a href="https://www.naver.com/">자유게시판</a></li>
<li class="sub_menu"><a href="#">인기게시판</a></li>
<li class="sub_menu"><a href="#">세종숲</a></li>
<li class="sub_menu"><a href="#">연애</a></li>
<li class="sub_menu"><a href="#">정치</a></li>
<li class="sub_menu"><a href="#">질문</a></li>
</ul>
</li>
<li class="parent_menu parent_menu_havesub Dashboard"><a href="#"><i
class="fas fa-smile"></i>Community><i class="fas fa-angle-up"></i></a>
<ul class="sub_ul sub2">
<li class="sub_menu"><a href="#">세종톡</a></li>
<li class="sub_menu"><a href="#">맛집게시판</a></li>
<li class="sub_menu"><a href="#">중고거래게시판</a></li>
<li class="sub_menu"><a href="#">홍보게시판</a></li>
<li class="sub_menu"><a href="#">정보게시판</a></li>
<li class="sub_menu"><a href="#">고민게시판</a></li>
</ul>
</li>
<li class="parent_menu parent_menu_havesub Information"><a href="#"><i
class="fas fa-smile"></i>Information<i class="fas fa-angle-up"></i></a>
<ul class="sub_ul sub3">
<li class="sub_menu"><a href="#">학교일정</a></li>
<li class="sub_menu"><a href="#">학생회</a></li>
<li class="sub_menu"><a href="#">세종뉴스</a></li>
<li class="sub_menu"><a href="#">고전독서</a></li>
<li class="sub_menu"><a href="#">강의평가</a></li>
<li class="sub_menu"><a href="#">졸업요건</a></li>
</ul>
</li>
<li class="parent_menu parent_menu_havesub Guide"><a href="#"><i class="fas fa-smile"></i>Guide<i
class="fas fa-angle-up"></i></a>
<ul class="sub_ul sub4">
<li class="sub_menu"><a href="#">취업현황</a></li>
<li class="sub_menu"><a href="#">졸업생</a></li>
<li class="sub_menu"><a href="#">공지사항</a></li>
<li class="sub_menu"><a href="#">기타</a></li>
<li class="sub_menu"><a href="#">기타</a></li>
<li class="sub_menu"><a href="#">기타</a></li>
</ul>
</li>
</ul>
</div>
</div>
</div>
<div class="mobile_header_title">
<a href="#" class="mobile_header_title_img"><span class="kor_logo">위세종</span><span
class="mobile_span">wesju</span></a>
</div>
<div class="mobile_header_sidebar2">
<a href="#" class="mobile_signin_a mobile_header_signinbox_span signin"
onclick="drop_down_mobile_menu_right()"><i class="fas fa-fingerprint"></i></a>
<div class="sidebar_right">
<!-- <div><a href="info_alarm_list.html">알림</a></div>
<div><a href="info.html">채팅</a></div>
<div><a href="info.html">내가쓴글</a></div>
<div><a href="info.html">정보수정</a></div>-->
<ul>
<li><a href="#"><i class="fa fa-bell-o"></i>알림</a></li>
<li><a href="#"><i class="fa fa-commenting" aria-hidden="true"></i>채팅</a></li>
<li><a href="#"><i class="fa fa-pencil-square-o" aria-hidden="true"></i>내가쓴글</a></li>
<li><a href="#"><i class="fa fa-info-circle" aria-hidden="true"></i>정보수정</a></li>
</ul>
<div class="sidebar_img2"><img src="img/교포1.jpg"></div>
</div>
<!--<i class="far fa-bell"></i>-->
</div>
</div>
</div>
</header>
<nav id="nav">
<div class="container">
<div class="row">
<div class="nav">
<h2 class="ir_su">Category</h2>
<div>
<h3><i class="fas fa-university"></i>커뮤니티</h3>
<ol>
<li><a href="#"><span>자유게시판</span></a></li>
<li><a href="#"><span>인기게시판</span></a></li>
<li><a href="#"><span>세종숲</span></a></li>
<li><a href="#"><span>정치게시판</span></a></li>
<li><a href="#"><span>질문게시판</span></a></li>
<li><a href="#"><span>정보게시판</span></a></li>
</ol>
</div>
<div>
<h3><i class="fas fa-university"></i>커뮤니티</h3>
<ol>
<li><a href="#"><span>세종톡</span></a></li>
<li><a href="#"><span>맛집게시판</span></a></li>
<li><a href="#"><span>중고거래게시판</span></a></li>
<li><a href="#"><span>홍보게시판</span></a></li>
<li><a href="#"><span>정보게시판</span></a></li>
<li><a href="#"><span>고민게시판</span></a></li>
</ol>
</div>
<div>
<h3><i class="fas fa-university"></i>대학생활</h3>
<ol>
<li><a href="#"><span>일상</span></a></li>
<li><a href="#"><span>맛집</span></a></li>
<li><a href="#"><span>중고거래</span></a></li>
<li><a href="#"><span>동아리</span></a></li>
<li><a href="#"><span>자취방</span></a></li>
<li><a href="#"><span>새내기</span></a></li>
</ol>
</div>
<div>
<h3><i class="fas fa-university"></i>학교정보</h3>
<ol>
<li><a href="#"><span>학교일정</span></a></li>
<li><a href="#"><span>학생회</span></a></li>
<li><a href="#"><span>세종뉴스</span></a></li>
<li><a href="#"><span>고전독서</span></a></li>
<li><a href="#"><span>강의평가</span></a></li>
<li><a href="#"><span>졸업요건</span></a></li>
</ol>
</div>
<div>
<h3><i class="fas fa-university"></i>안내</h3>
<ol>
<li><a href="#"><span>취업현황</span></a></li>
<li><a href="#"><span>졸업생</span></a></li>
<li><a href="#"><span>공지사항</span></a></li>
<li><a href="#"><span>Html 태그</span></a></li>
<li><a href="#"><span>Html 태그</span></a></li>
<li><a href="#"><span>Html 태그</span></a></li>
</ol>
</div>
</div>
</div>
<article id="toggle">
<div class="container">
<div class="toggle">
<span></span>
<a href="#" class="btn" onclick="drop_down_monitor_menu()">
<i class="fa fa-angle-down" aria-hidden="true"></i>
</a>
</div>
</div>
</article>
</div>
</nav>
<main>
<section id="contents">
<div class="container">
<div class="wrapper">
<!--제목 및 본문 정보-->
<section id="post_header">
<ul class="post_category">
<li><a href="board.html">자유게시판</a></li>
<li></li>
<li></li>
<li class="edit_post">
<!--post_category 오른쪽 상단 ellipsis-v 클릭-->
<div class="a_o_category">
<a href="#" class="com1"><span>수정</span></a>
<span>|</span>
<a href="#" class="com2"><span>삭제</span></a>
</div>
</li>
</ul>
<br />
<div class="post_title">
<h1><a href="#">세종 글로벌 버디, 17기 신입버디 모집세종 글로벌 버디, 17기 신입버디 모집</a></h1>
</div>
<div>
<ul class="post_detail">
<li class="chat_writer"><a onclick="open_chat()" href="#"><i class="fa fa-user"
aria-hidden="true"></i> <span class="user_name">관리자</span></a>
<!--글쓴이 클릭 시, 채팅하기 기능-->
</li>
<li><a href="#"><i class="fas fa-eye"></i></a> <span class="views_">35</span></li>
<li><a href="#"><i class="fa fa-commenting-o" aria-hidden="true"></i></a> <span
class="comment_num_">25</span></li>
<li><a href="#"><i class="fa fa-clock-o" aria-hidden="true"></i></a> <span
class="writing_time_">2015.03.22 15:30</span></li>
</ul>
<!--url복사-->
<span class="copy_url"><input type="text" id="text_url"><button OnClick="copy_url_to_clipboard()"><i
class="fa fa-clone" aria-hidden="true" style="font-size:20px;"></i></button></span>
<!--출처: https://doolyit.tistory.com/111 [동해둘리의 IT Study]-->
</section>
<hr />
<!--본문-->
<section>
<article id="post_content">
<img src=" http://www.sejongpr.ac.kr/dataview/sejong_pr/temp/DEI20210723100722.jpg" />
<img src="https://i.pinimg.com/originals/e2/0e/11/e20e116c0d645047f2570263611e1970.jpg" />
<p><br /><br />
세종 글로벌 버디는 7월 28일부터 8월 4일까지 17기 신입 버디를 모집한다.
<br /><br />
글로벌 버디는 국제교류센터(CISS) 산하 봉사 자치단체이다. 외국인 학생들과 문화 교류를 통해 친밀한 관계를 형성하는 활동을 한다.
<br /><br />
활동은 △소모임 운영 △Welcoming Party △무도회 등 매 학기 다양한 활동과 행사를 진행한다.
<br /><br />
선발은 1차 서류 전형과 2차 면접전형으로 진행된다. 7월 23일에 웹엑스로 진행되는 모집 설명회 참석시 선발 가산점을 받을 수 있다.
<br /><br />
지원 자격은 1년 동안 활동 가능한 재학생이다. 휴학생과 복학생도 지원이 가능하다.
<br /><br />
지원 분야는 총 4가지이다. 기획팀, 홍보팀, 행정팀과 영상팀이다. 이 중 하나를 선택하여 지원하면 된다.
<br /><br />
식활동에 의한 봉사 시간을 인정해 준다. 해외 교환학생 선발 시 가산점의 혜택도 주어진다.
<br /><br />
접수는 학교 홈페이지 대외협력처 공지 게시판(www.sejong.ac.kr)에서 지원서를 다운한 후 메일([email protected])로 보내면 된다.
<br /><br />
자세한 내용은 글로벌버디 16기 회장(010-4999-6437)에게 문의하면 된다.
<br /><br /><br /><br />
취재/ 이유리 홍보기자([email protected])
<br /><br />
</p>
<div class="evaluate_post">
<div class="like_it">
<button onclick="thumbs_up()"><i class="fa fa-thumbs-o-up" aria-hidden="true"></i>
<div class="like_it_num">3053</div>
</button>
<!--좋아요 버튼 클릭 시
<button onclick="thumbs_up()" style="background-color:#c3200e"><i class="fa fa-thumbs-o-up" aria-hidden="true" style="color:white"></i><div class="like_it_num" style="color:white">3053</div></button>-->
</div>
<div class="hate_it">
<button onclick="thumbs_down()"><i class="fa fa-thumbs-o-down" aria-hidden="true"></i>
<div class="hate_it_num">10</div>
</button>
<!--싫어요 버튼 클릭 시
<button onclick="thumbs_down()" style="background-color:#283598"><i class="fa fa-thumbs-o-down" aria-hidden="true" style="color:white"></i><div class="hate_it_num" style="color:white">10</div></button>
-->
<!--클릭 시 변화 : border: 2px solid #283598;-->
</div>
</div>
<!--<span class="edit_post left_ver">
<div class="a_o_category">
<a href="#" class="com1"><span>목록보기</span></a>
</div>
</span>-->
<span class="edit_post right_ver">
<!--post_category 오른쪽 상단 ellipsis-v 클릭-->
<div class="a_o_category">
<a href="#" class="com1"><span>목록보기</span></a>
<!--<span>|</span>
<a href="#" class="com2"><span>삭제</span></a>-->
</div>
</span>
</article>
</section>
<hr />
<!--댓글-->
<section id="post_comments">
<div>
<h1>댓글</h1>
<!--댓글쓰기-->
<div class="write_comment">
<input type="text" value="댓글을 작성해주세요. 비방이나 욕설은 삭제될 수 있습니다." class="hide_comment"
onclick="show_comment_box()" />
<textarea name="name" rows="8" cols="80"></textarea>
<button onclick="submit_comment"><i class="fa fa-paper-plane" aria-hidden="true"></i></button>
</div>
<!--댓글목록-->
<article>
<!--베댓은 댓글 목록 상단 노출(ex유튜브 댓글)-->
<!--예시댓글1-->
<div class="comment">
<span class="img"><img src="http://placehold.it/50x50" /></span>
<span class="writer_name"><a href="#">관리자관리자관리자관리자관리자관리자35</a>
</span>
<div class="writing_time">2021.04.24 15:30</div>
<span class="comm">
<!--댓글 ellipsis-v-->
<div class="a_o_comment">
<a href="#" class="com1" onclick="modify_comment()"><span>수정</span></a>
<span>|</span>
<a href="#" class="com2"><span>삭제</span></a>
</div>
</span>
<div class="edit_cmt">
<!--댓내용--> <textarea class="cmt" height="auto"
disabled="disabled">글로벌 버디는 버디버디글로벌 버디는 버디버디글로벌 버디는 버디버디글로벌 버디는 버디버디글로벌 버디는 버디버디글로버디는 버디버디글로벌 버디는 버디버디글로벌 버디는 버디버디글로버디는 버디버디글로벌 버디는 버디버디글로벌 버디는 버디버디글로벌 </textarea>
<button onclick="submit_comment()"><i class="fa fa-paper-plane-o"
aria-hidden="true"></i></button>
</div>
<table class="comment_per" height="20">
<tr>
<td><button class="like"><i class="fa fa-thumbs-o-up" aria-hidden="true"></i><span
class="good">33</span></button></td>
<!--댓 좋아요 클릭 시
<td><button class="like" style="color:#c3200e"><i class="fa fa-thumbs-o-up" aria-hidden="true"></i><span class="good">33</span></button></td>
-->
<td><button class="dislike"><i class="fa fa-thumbs-o-down" aria-hidden="true"></i><span
class="bad">10</span></button></td>
<!--댓 싫어요 클릭 시
<td><button class="dislike" style="color:#283598"><i class="fa fa-thumbs-o-down" aria-hidden="true"></i><span class="bad">10</span></button></td>
-->
<td><button class="cmt_comment" onclick="hide_reply_list()"><i
class="far fa-comment-dots"></i><span>10</span></button></td>
</tr>
</table>
<article>
<div class="reply">
<input type="text" value="답댓 달기" class="hide_reply" onclick="show_reply_box()" />
<div class="write_reply">
<textarea name="name" rows="8" cols="80"></textarea>
<button onclick="submit_reply"><i class="fa fa-paper-plane" aria-hidden="true"></i></button>
</div>
<!--동적생성,댓글 예시-->
<div class="reply_list">
<div>
<span class="reply_arrow"><i class="fa fa-arrow-right" aria-hidden="true"></i></span>
<!--예시대댓글1-->
<div class="comment">
<span><img src="http://placehold.it/50x50" /></span>
<span class="writer_name"><a href="#">관리자1</a></span>
<span class="writing_time">2021.04.24 15:30</span>
<span class="comm">
<!--댓글 ellipsis-v-->
<div class="a_o_comment">
<a href="#" class="com1" onclick="modify_comment()"><span>수정</span></a>
<span>|</span>
<a href="#" class="com2"><span>삭제</span></a>
</div>
</span>
<div class="edit_cmt">
<!--댓내용--> <textarea class="cmt" height="auto"
disabled="disabled">글로벌 버디는 버디버디글로벌 버디는 버디버디글로벌 버디는 버디버디글로벌 버디는 버디버디글로벌 버디는 버디버디글로버디는 버디버디글로벌 버디는 버디버디글로벌 버디는 버디버디글로버디는 버디버디글로벌 버디는 버디버디글로벌 버디는 버디버디글로벌 </textarea>
<button onclick="submit_comment()"><i class="fa fa-paper-plane-o"
aria-hidden="true"></i></button>
</div>
<table class="comment_per" height="20">
<tr>
<td><button class="like"><i class="fa fa-thumbs-o-up" aria-hidden="true"></i><span
class="good">33</span></button></td>
<td><button class="dislike"><i class="fa fa-thumbs-o-down"
aria-hidden="true"></i><span class="bad">10</span></button></td>
<td><button class="cmt_comment" onclick="hide_reply_list()"><i
class="far fa-comment-dots"></i><span>10</span></button></td>
</tr>
</table>
</div>
</div>
<span class="reply_arrow"><i class="fa fa-arrow-right" aria-hidden="true"></i></span>
<!--예시대댓글2-->
<div class="comment">
<span><img src="http://placehold.it/50x50" /></span>
<span class="writer_name"><a href="#">관리자1</a></span>
<span class="writing_time">2021.04.24 15:30</span>
<span class="comm">
<!--댓글 ellipsis-v-->
<div class="a_o_comment">
<a href="#" class="com1" onclick="modify_comment()"><span>수정</span></a>
<span>|</span>
<a href="#" class="com2"><span>삭제</span></a>
</div>
</span>
<div class="edit_cmt">
<!--댓내용--> <textarea class="cmt" height="auto"
disabled="disabled">글로벌 버디는 국제교류센터(CISS) 산하 봉사 자치단체이다. 외국인 학생들과 문화 교류를 통해 친밀한 관계를 형성하는 활동을 한다.글로벌 버디는 국제교류센터(CISS) 산하 봉사 자치단체이다. 외국인 학생들과 문화 교류를 통해 친밀한 관계를 형성하는 활동을 한다.</textarea>
<button onclick="submit_comment()"><i class="fa fa-paper-plane-o"
aria-hidden="true"></i></button>
</div>
<table class="comment_per" height="20">
<tr>
<td><button class="like"><i class="fa fa-thumbs-o-up" aria-hidden="true"></i><span
class="good">33</span></button></td>
<td><button class="dislike"><i class="fa fa-thumbs-o-down"
aria-hidden="true"></i><span class="bad">10</span></button></td>
<td><button class="cmt_comment" onclick="hide_reply_list()"><i
class="far fa-comment-dots"></i><span>10</span></button></td>
</tr>
</table>
</div>
<button onclick="hide_reply_list()" class="extra_reply"><i class="fa fa-angle-double-up"
aria-hidden="true"></i></button>
</div>
</div>
</article>
</div>
<!--예시댓글1-->
<div class="comment">
<span class="img"><img src="http://placehold.it/50x50" /></span>
<span class="writer_name"><a href="#">관리자관리자관리자관리자관리자관리자35</a>
</span>
<div class="writing_time">2021.04.24 15:30</div>
<span class="comm">
<!--댓글 ellipsis-v-->
<div class="a_o_comment">
<a href="#" class="com1" onclick="modify_comment()"><span>수정</span></a>
<span>|</span>
<a href="#" class="com2"><span>삭제</span></a>
</div>
</span>
<div class="edit_cmt">
<!--댓내용--> <textarea class="cmt" height="auto"
disabled="disabled">글로벌 버디는 버디버디글로벌 버디는 버디버디글로벌 버디는 버디버디글로벌 버디는 버디버디글로벌 버디는 버디버디글로버디는 버디버디글로벌 버디는 버디버디글로벌 버디는 버디버디글로버디는 버디버디글로벌 버디는 버디버디글로벌 버디는 버디버디글로벌 </textarea>
<button onclick="submit_comment()"><i class="fa fa-paper-plane-o"
aria-hidden="true"></i></button>
</div>
<table class="comment_per" height="20">
<tr>
<td><button class="like"><i class="fa fa-thumbs-o-up" aria-hidden="true"></i><span
class="good">33</span></button></td>
<td><button class="dislike"><i class="fa fa-thumbs-o-down" aria-hidden="true"></i><span
class="bad">10</span></button></td>
<td><button class="cmt_comment" onclick="hide_reply_list()"><i
class="far fa-comment-dots"></i><span>10</span></button></td>
</tr>
</table>
<!--<ul class="comment_per">
<li><button><i class="fa fa-thumbs-o-up" aria-hidden="true"></i><span>22</span></button></li>
<li><button class="dislike"><i class="fa fa-thumbs-o-down" aria-hidden="true"></i><span class="bad">10</span></button></li>
<li><button class="comment"onclick="hide_reply_list()"><i class="far fa-comment-dots"></i><span class="commnet">10</span></button></li>-->
<!--답댓, 답댓에 대한 추가답댓(reply)을 달수 없음-->
<article>
<div class="reply">
<input type="text" value="답댓 달기" class="hide_reply" onclick="show_reply_box()" />
<div class="write_reply">
<textarea name="name" rows="8" cols="80"></textarea>
<button onclick="submit_reply"><i class="fa fa-paper-plane" aria-hidden="true"></i></button>
</div>
<div>
<span class="reply_arrow"><i class="fa fa-arrow-right" aria-hidden="true"></i></span>
<!--동적생성,댓글 예시-->
<div class="reply_list">
<!--예시대댓글1-->
<div class="comment">
<span><img src="http://placehold.it/50x50" /></span>
<span class="writer_name"><a href="#">관리자1</a></span>
<span class="writing_time">2021.04.24 15:30</span>
<span class="comm">
<!--댓글 ellipsis-v-->
<div class="a_o_comment">
<a href="#" class="com1" onclick="modify_comment()"><span>수정</span></a>
<span>|</span>
<a href="#" class="com2"><span>삭제</span></a>
</div>
</span>
<div class="edit_cmt">
<!--댓내용--> <textarea class="cmt" height="auto"
disabled="disabled">글로벌 버디는 버디버디글로벌 버디는 버디버디글로벌 버디는 버디버디글로벌 버디는 버디버디글로벌 버디는 버디버디글로버디는 버디버디글로벌 버디는 버디버디글로벌 버디는 버디버디글로버디는 버디버디글로벌 버디는 버디버디글로벌 버디는 버디버디글로벌 </textarea>
<button onclick="submit_comment()"><i class="fa fa-paper-plane-o"
aria-hidden="true"></i></button>
</div>
<table class="comment_per" height="20">
<tr>
<td><button class="like"><i class="fa fa-thumbs-o-up" aria-hidden="true"></i><span
class="good">33</span></button></td>
<td><button class="dislike"><i class="fa fa-thumbs-o-down"
aria-hidden="true"></i><span class="bad">10</span></button></td>
<td><button class="cmt_comment" onclick="hide_reply_list()"><i
class="far fa-comment-dots"></i><span>10</span></button></td>
</tr>
</table>
</div>
<button onclick="hide_reply_list()" class="extra_reply"><i class="fa fa-angle-double-up"
aria-hidden="true"></i></button>
</div>
</div>
</div>
</article>
</div>
</section>
</div>
<section id="cont_center">
<!--게시판 헤더-->
<div class="board_list_header">
<!--게시판 제목-->
<h1 class="board_list_title">공지게시판</h1>
<span class="board_description">wesju 이용에 관한 <span>안내사항</span>과 이용자가 지켜야 할 <span>공지사항</span>을
게시합니다.</span>
<!--클릭 시 키워드에 해당하는 목록 나열-->
<!--<ul class="board_list_keyword">
<li>keyword</li>
<li><a href="#">#전체</a></li>
<li><a href="#">#공지</a></li>
<li><a href="#">#이벤트</a></li>
<li><a href="#">#후기</a></li>
<li><a href="#">#ㅋㅋ</a></li>
</ul>-->
</div>
<!------------------------------------------------->
<!-- -->
<!-- -->
<!-- monitor.ver 게시판1 -->
<!-- -->
<!-- -->
<!------------------------------------------------->
<div class="board_list_table">
<table class="board_list_form" style="table-layout:fixed">
<thead>
<tr>
<th>번호</th>
<th style="width:40%; text-overflow:ellipsis; overflow:hidden; white-space:nowrap">제목</th>
<th>조회수</th>
<th style="width:25px;">추천</th>
<th>작성자</th>
<th>날짜</th>
</tr>
</thead>
<tbody>
<!--공지글-->
<tr class="top_notice">
<td><span class="color_notice">공지</span></td>
<td><span class="title_ellipsis"><a href="post.html">게시글 제목입니다게시글 제목입니다게시글 제목입니다게시글 제목입니다게시글
제목입니다게시글 제목입니다</a></span> <a href="#">(<span
class="comment_num">5</span>)</a>  <i class="far fa-images"></i></td>
<td>10</td>
<td>1</td>
<td>관리자</td>
<td>2022.02.22</td>
</tr>
<tr class="top_notice">
<td><span class="color_notice">공지</span></td>
<td><span class="title_ellipsis"><a href="#">게시글 제목입니다</a></span> <a href="#">(<span
class="comment_num">5</span>)</a>  <i class="far fa-images"></i></td>
<td>10</td>
<td>1</td>
<td>관리자</td>
<td>2022.02.22</td>
</tr>
<!--일반게시글-->
<tr>
<td>223010</td>
<td><span class="title_ellipsis"><a href="#">게시글 제목입니다게시글 제목입니다게시글 제목입니다게시글 제목입니다게시글 제목입니다게시글
제목입니다</a></span> <a href="#">(<span class="comment_num">5</span>)</a>  <i
class="far fa-images"></i></td>
<td>20</td>
<td>1</td>
<td>관리자</td>
<td>2022.02.22</td>
</tr>
<tr>
<td>223010</td>
<td><span class="title_ellipsis"><a href="#">게시글 제목입니다</a></span> <a href="#">(<span
class="comment_num">5</span>)</a>  <i class="far fa-images"></i></td>
<td>20</td>
<td>1</td>
<td>관리자</td>
<td>2022.02.22</td>
</tr>
<tr>
<td>223010</td>
<td><span class="title_ellipsis"><a href="#">게시글 제목입니다</a></span> <a href="#">(<span
class="comment_num">5</span>)</a>  <i class="far fa-images"></i></td>
<td>20</td>
<td>1</td>
<td>관리자</td>
<td>2022.02.22</td>
</tr>
</tbody>
</table>
</div>
<!------------------------------------------------->
<!-- -->
<!-- -->
<!-- mobile.ver 게시판2 -->
<!-- -->
<!-- -->
<!------------------------------------------------->
<div class="mb_board_list_table">
<table class="mb_board_list_form">
<tbody>
<!--공지o,이미지 있는 버전-->
<tr class=board_list_elem>
<td>
<!--제목-->
<div class="mb_board_title">
<span class="mb_category">공지</span><a href="#">Lorem Ipsum is simply dummy text of the
printing and typesetting industry. </a>
</div>
<!--닉네임, 게시일자, 조회수 순-->
<div class="mb_board_title_bottom">
<span class="nickname">관리자</span>
<span class="views"><i class="fas fa-eye"></i> 30</span>
<span class="comments"><i class="far fa-comments"></i> 5</span>
<span class="thumb"><i class="fa fa-thumbs-o-up" aria-hidden="true"></i> 30</span>
<span class="date">2022.02.22</span>
</div>
</td>
<!--이미지-->
<td colspan="2">
<span class="table_img"><img src="http://placehold.it/120x80"></span>
</td>
</tr>
<!--공지x,이미지 있는 버전-->
<tr class=board_list_elem>
<td>
<!--제목-->
<div class="mb_board_title">
<a href="#">Lorem Ipsum is simply dummy text of the printing and typesetting industry. </a>
</div>
<!--닉네임, 게시일자, 조회수 순-->
<div class="mb_board_title_bottom">
<span class="nickname">관리자</span>
<span class="views"><i class="fas fa-eye"></i> 30</span>
<span class="comments"><i class="far fa-comments"></i> 5</span>
<span class="thumb"><i class="fa fa-thumbs-o-up" aria-hidden="true"></i> 30</span>
<span class="date">2022.02.22</span>
</div>
</td>
<!--이미지-->
<td colspan="2">
<span class="table_img"><img src="http://placehold.it/120x80"></span>
</td>
</tr>
<!--공지o, 이미지 없는 버전-->
<tr class=board_list_elem>
<td colspan="2">
<!--제목-->
<div class="mb_board_title">
<span class="mb_category">공지</span><a href="#">Lorem Ipsum is simply dummy text of the
printing and typesetting industry. </a>
</div>
<!--닉네임, 게시일자, 조회수 순-->
<div class="mb_board_title_bottom">
<span class="nickname">관리자</span>
<span class="views"><i class="fas fa-eye"></i> 30</span>
<span class="comments"><i class="far fa-comments"></i> 5</span>
<span class="thumb"><i class="fa fa-thumbs-o-up" aria-hidden="true"></i> 30</span>
<span class="date">2022.02.22</span>
</div>
</td>
</tr>
<!--공지x,이미지 없는 버전-->
<tr class=board_list_elem>
<td colspan="2">
<!--제목-->
<div class="mb_board_title">
<a href="#">Lorem Ipsum is simply dummy text of the
printing and typesetting industry. </a>
</div>
<!--닉네임, 게시일자, 조회수 순-->
<div class="mb_board_title_bottom">
<span class="nickname">관리자</span>
<span class="views"><i class="fas fa-eye"></i> 30</span>
<span class="comments"><i class="far fa-comments"></i> 5</span>
<span class="thumb"><i class="fa fa-thumbs-o-up" aria-hidden="true"></i> 30</span>
<span class="date">2022.02.22</span>
</div>
</td>
</tr>
<tr class=board_list_elem>
<td>
<!--제목-->
<div class="mb_board_title">
<a href="#">Lorem Ipsum is simply dummy text of the printing and typesetting industry. </a>
</div>
<!--닉네임, 게시일자, 조회수 순-->
<div class="mb_board_title_bottom">
<span class="nickname">관리자</span>
<span class="views"><i class="fas fa-eye"></i> 30</span>
<span class="comments"><i class="far fa-comments"></i> 5</span>
<span class="thumb"><i class="fa fa-thumbs-o-up" aria-hidden="true"></i> 30</span>
<span class="date">2022.02.22</span>
</div>
</td>
<!--이미지-->
<td colspan="2">
<span class="table_img"><img src="http://placehold.it/120x80"></span>
</td>
</tr>
<tr class=board_list_elem>
<td>
<!--제목-->
<div class="mb_board_title">
<span class="mb_category">공지</span><a href="#">Lorem Ipsum is simply dummy text of the
printing and typesetting industry. </a>
</div>
<!--닉네임, 게시일자, 조회수 순-->
<div class="mb_board_title_bottom">
<span class="nickname">관리자</span>
<span class="views"><i class="fas fa-eye"></i> 30</span>
<span class="comments"><i class="far fa-comments"></i> 5</span>
<span class="thumb"><i class="fa fa-thumbs-o-up" aria-hidden="true"></i> 30</span>
<span class="date">2022.02.22</span>
</div>
</td>
<!--이미지-->
<td colspan="2">
<span class="table_img"><img src="http://placehold.it/120x80"></span>
</td>
</tr>
<tr class=board_list_elem>
<td colspan="2">
<!--제목-->
<div class="mb_board_title">
<span class="mb_category">공지</span><a href="#">Lorem Ipsum is simply dummy text of the
printing and typesetting industry. </a>
</div>
<!--닉네임, 게시일자, 조회수 순-->
<div class="mb_board_title_bottom">
<span class="nickname">관리자</span>
<span class="views"><i class="fas fa-eye"></i> 30</span>
<span class="comments"><i class="far fa-comments"></i> 5</span>
<span class="thumb"><i class="fa fa-thumbs-o-up" aria-hidden="true"></i> 30</span>
<span class="date">2022.02.22</span>
</div>
</td>
</tr>
<tr class=board_list_elem>
<td>
<!--제목-->
<div class="mb_board_title">
<span class="mb_category">공지</span><a href="#">Lorem Ipsum is simply dummy text of the
printing and typesetting industry. </a>
</div>
<!--닉네임, 게시일자, 조회수 순-->
<div class="mb_board_title_bottom">
<span class="nickname">관리자</span>
<span class="views"><i class="fas fa-eye"></i> 30</span>
<span class="comments"><i class="far fa-comments"></i> 5</span>
<span class="thumb"><i class="fa fa-thumbs-o-up" aria-hidden="true"></i> 30</span>
<span class="date">2022.02.22</span>
</div>
</td>
<!--이미지-->
<td colspan="2">
<span class="table_img"><img src="http://placehold.it/120x80"></span>
</td>
</tr>
<tr class=board_list_elem>
<td>
<!--제목-->
<div class="mb_board_title">
<span class="mb_category">공지</span><a href="#">Lorem Ipsum is simply dummy text of the
printing and typesetting industry. </a>
</div>
<!--닉네임, 게시일자, 조회수 순-->
<div class="mb_board_title_bottom">
<span class="nickname">관리자</span>
<span class="views"><i class="fas fa-eye"></i> 30</span>
<span class="comments"><i class="far fa-comments"></i> 5</span>
<span class="thumb"><i class="fa fa-thumbs-o-up" aria-hidden="true"></i> 30</span>
<span class="date">2022.02.22</span>
</div>
</td>
<!--이미지-->
<td colspan="2">
<span class="table_img"><img src="http://placehold.it/120x80"></span>
</td>
</tr>
<tr class=board_list_elem>
<td>
<!--제목-->
<div class="mb_board_title">
<span class="mb_category">공지</span><a href="#">Lorem Ipsum</a>
</div>
<!--닉네임, 게시일자, 조회수 순-->
<div class="mb_board_title_bottom">
<span class="nickname">관리자</span>
<span class="views"><i class="fas fa-eye"></i> 30</span>
<span class="comments"><i class="far fa-comments"></i> 5</span>
<span class="thumb"><i class="fa fa-thumbs-o-up" aria-hidden="true"></i> 30</span>
<span class="date">2022.02.22</span>
</div>
</td>
<!--이미지-->
<td colspan="2">
<span class="table_img"><img src="http://placehold.it/120x80"></span>
</td>
</tr>
<tr class=board_list_elem>
<td>
<!--제목-->
<div class="mb_board_title">
<span class="mb_category">공지</span><a href="#">Lorem Ipsum is simply dummy text of the
printing and typesetting industry. </a>
</div>
<!--닉네임, 게시일자, 조회수 순-->
<div class="mb_board_title_bottom">
<span class="nickname">관리자</span>
<span class="views"><i class="fas fa-eye"></i> 30</span>
<span class="comments"><i class="far fa-comments"></i> 5</span>
<span class="thumb"><i class="fa fa-thumbs-o-up" aria-hidden="true"></i> 30</span>
<span class="date">2022.02.22</span>
</div>
</td>
<!--이미지-->
<td colspan="2">
<span class="table_img"><img src="http://placehold.it/120x80"></span>
</td>
</tr>
<tr class=board_list_elem>
<td>
<!--제목-->
<div class="mb_board_title">
<span class="mb_category">공지</span><a href="#">Lorem Ipsum is simply dummy text of the
printing and typesetting industry. </a>
</div>
<!--닉네임, 게시일자, 조회수 순-->
<div class="mb_board_title_bottom">
<span class="nickname">관리자</span>
<span class="views"><i class="fas fa-eye"></i> 30</span>
<span class="comments"><i class="far fa-comments"></i> 5</span>