-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommunity_View.html
More file actions
46 lines (39 loc) · 1.41 KB
/
Community_View.html
File metadata and controls
46 lines (39 loc) · 1.41 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
Remove this if you use the .htaccess -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Community</title>
<meta name="viewport" content="width=device-width; initial-scale=1.0">
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="../javascripts/Community_View.js"></script>
<link rel="stylesheet" type="text/css" href="../stylesheets/Additional_Frame.css">
<link rel="stylesheet" type="text/css" href="../stylesheets/Community_View.css">
</head>
<body>
<div class="sidebar">
<a href="Project">그루핑</a>
<div id="menu_fix">
<ul id="submenu" class="menu">
<li><a name="info" href="Mypage" target="cwindow"> <span>내 정보</span> </a></li>
<li><a name="community" href="Community"> <span>커뮤니티</span> </a></li>
<li><a name="logout" href="/"> <span>로그아웃</span> </a></li>
</ul>
</div>
</div>
<div id="wrapper">
<table id="top_bar" border="0" cellpadding="0" cellspacing="0">
<tr>
<td id="writer"></td>
<td id="title"></td>
<td id="date"></td>
</tr>
</table>
<div id="content_wrapper"><div id="content"></div></div>
<button id="backtolist_btn">목록</button>
<button id="write_btn">글쓰기</button>
</div>
</body>
</html>