-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquote.html
88 lines (76 loc) · 2.4 KB
/
quote.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
<!DOCTYPE html>
<html lang="ko-KR">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>요청 게시판</title>
<link rel="stylesheet" href="./css/common.css">
<link rel="stylesheet" href="./css/table.css">
<link rel="stylesheet" href="./css/list.css">
<link rel="stylesheet" href="css/layout.css">
</head>
<body>
<!-- header -->
<header class="header">
<h1><a href="index.html">스토브리그 명대사</a></h1>
<div class="header-click">
<a href="quote.html">요청 게시판</a>
<a class="headerLink" id="login" href="login.html">로그인</a>
<a class="headerLink" id="profile" href="profile.html">회원정보수정</a>
<a class="headerLink" id="join" href="join.html">회원가입</a>
<a class="headerLink" id="logout" href="#">로그아웃</a>
</div>
</header>
<!-- // header -->
<div class="main">
<h2 class="main-title">게시판</h2>
<div class="board-top">
<p class="main-desc"><strong id="count">2개</strong>의 게시글이 있습니다.</p>
</div>
<!-- 게시판 리스트 -->
<table class="table list">
<colgroup>
<col style="width: 60px">
<col>
<col style="width: 100px">
<col style="width: 120px">
<col style="width: 100px">
</colgroup>
<thead>
<tr>
<th>번호</th>
<th>제목</th>
<th>작성자</th>
<th>작성일</th>
<th>승인</th>
</tr>
</thead>
<tbody id="main">
<!-- 게시글이 없을때 / 검색한 게시글이 없을때 -->
<!-- <tr>
<td class="nodata" colspan="5">등록된 게시물이 없습니다.</td>
</tr> -->
<!-- 게시글이 있을때 -->
</tbody>
</table>
<!-- //게시판 리스트 -->
<div class="board-bottom">
<!-- 페이지 -->
<div class="pagination">
</div>
<!-- //페이지 -->
<div class="btn-group">
<a class="btn" href="./write.html">글쓰기</a>
</div>
</div>
</div>
<script src="js/controller.js"></script>
<script src="js/board.js"></script>
<!-- footer -->
<footer>
copyright @<a href="https://github.com/jmp7911/chatAPI" target="_blank">github.com/jmp7911/chatAPI</a>
</footer>
<!-- //footer -->
</body>
</html>