Skip to content

Commit

Permalink
연결 링크 부분 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
parksewon committed Dec 17, 2021
1 parent 21ee4d4 commit 3c790b8
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 23 deletions.
11 changes: 8 additions & 3 deletions public/css/board_write_css.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
body {
padding: 20px;
/* padding: 20px;
margin: 0 auto;
width: 40%;
width: 40%; */
padding: 20px;
margin-left: 10%;
margin-right: 10%;
background-color: #242424;
font-size: 15px;

}

.board_wrap{
text-align: center;
}

.main_title{
display: flex;
Expand Down
5 changes: 4 additions & 1 deletion template/board.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@ module.exports = {
</div>
</div>
<a href="/"><div class="logo">Hi Alcohol</div></a>
<button type="button" class="writeBtn" id="img_btn"><img class="writeBtn" src="/public/img/writeButton.png"></button>
<div class = "writeBtn">
<a href="/board/write"><img class="writeBtn" src="/public/img/writeButton.png"></a>
</div>
<!-- <div class="writeIcon"><img src="writeButton.png"></div> -->
</div>
<div class="contentList">
Expand Down
35 changes: 18 additions & 17 deletions template/board_view.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ module.exports = {
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>공지사항</title>
<title>게시글 상세보기 페이지</title>
<link rel="stylesheet" href="/public/css/board_view_css.css">
<link rel="stylesheet" href="/public/css/menu.css">
<link
Expand All @@ -48,23 +48,24 @@ module.exports = {
</div>
</a>
</div>
<div class="menu_bg"></div>
<div class="sidebar_menu">
<div class="close_btn">
<a href="#">
<div class="container">
<img src="public/img/back.png" height="18px" style="text-align: right; display: flexbox;"/>
<div class="menu_bg"></div>
<div class="sidebar_menu">
<div class="close_btn">
<a href="#">
<div class="container">
<img src="public/img/back.png" height="18px" style="text-align: right; display: flexbox;"/>
</div>
</a>
</div>
<div class="menu_wrap">
<div><a href="/board">꿀조합 게시판</a></div>
<div><a href="/map">우리동네 주류매장</a></div>
<div><a href="/myboard">내가 쓴 꿀조합</a></div>
<div><a href="/likes">좋아요 리스트</a></div>
<div><a href="/logout">로그아웃</a></div>
// login 시에만 보이게 할 예정
</div>
</div>
</a>
</div>
<div class="menu_wrap">
<div><a href="/board">꿀조합 게시판</a></div>
<div><a href="#">우리동네 주류매장</a></div>
<div><a href="/myboard">내가 쓴 꿀조합</a></div>
<div><a href="/likes">좋아요 리스트</a></div>
<div><a href="/logout">로그아웃</a></div>
</div>
</div>
<div class="hi_alcohol">
<a href="/" style="font-family: 'Pattaya', sans-serif; color: #0bf3bc">Hi Alcohol</a>
</div>
Expand Down
4 changes: 2 additions & 2 deletions template/board_write.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module.exports = {
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>공지사항</title>
<title>글 작성 페이지</title>
<link rel="stylesheet" href="/public/css/board_write_css.css">
</head>
<style>
Expand Down Expand Up @@ -39,7 +39,7 @@ module.exports = {
<form action="/board_process" method="post" >
<div class="main_title">
<div class="exit">
<a href="board-list.html"><img class="x_icon" src="/public/img/x_icon.png"></a>
<a href="/board"><img class="x_icon" src="/public/img/x_icon.png"></a>
</div>
<div class="hi_alcohol">
<a href="/" style="font-family: 'Pattaya', sans-serif; color: #0bf3bc">Hi Alcohol</a>
Expand Down

0 comments on commit 3c790b8

Please sign in to comment.