-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotive_view.php
83 lines (52 loc) · 1.41 KB
/
notive_view.php
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
<?php
$code_page='third';
include "./head.php";
?>
<div class="notice_cont">
<h2 class="sub_tit">공지<span class="po_b">사항</span></h2>
<!-- 게시물 시작 -->
<table class="bbs_view">
<tr>
<th colspan="2" class="tit">공지사항 테스트입니다.</th>
</tr>
<tr>
<td class="view_detail" colspan="2">
작성자 : ADMIN <span class="mobile_enter"></span>작성일 : 2020-08-30 조회수 : 5
</td>
</tr>
<tr>
<td colspan="2" class="view_content_con">
<div class="view_content">
테스트중입니다.
</div>
</td>
</tr>
<tr>
<td class="tit pc_c" width="15%">파일첨부</td>
<td class="txt pc_c"><a href="#" >파일첨부테스트.txt </a></td>
</tr>
<tr>
<td class="tit pc_c" width="15%">이전글</td>
<td class="txt pc_c"><!-- <a href=''></a> -->이전글이 없습니다.</td>
</tr>
<tr>
<td class="tit pc_c">다음글</td>
<td class="txt pc_c"><!-- <a href=''></a> -->다음글이 없습니다.</td>
</tr>
</table>
</form>
<!-- 버튼 -->
<div class="bbs_btn">
<ul>
<li class="sel_btn">
<a href="javascript:board_del();" class="btn_w">삭제하기</a>
</li>
<li class="list_btn inner_btn">
<a href="./notice.php" class="btn_w">리스트</a>
<a href="notice_write.php" class="btn_b">수정하기</a>
</li>
</ul>
</div>
<!-- 버튼 끝 -->
</div>
<? include "./foot.php"; ?>