forked from Moonhokyun/Frontro_Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpost.html
98 lines (94 loc) · 4.21 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
<!DOCTYPE html>
<html lang="ko">
<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">
<link rel="stylesheet" href="./style/reset.css">
<link rel="stylesheet" href="./style/post.css">
<link rel="shortcut icon" href="./src/favicon.ico">
<title>post</title>
<script defer src="js/post.js"></script>
</head>
<body>
<div class="container">
<header class="nav">
<img src="src/png/icon-arrow-left.png" alt="뒤로가기" class="back-btn">
<button class="more-btn">
<img src="src/png/icon-more-vertical.png" alt="더보기" class="icon-more">
</button>
</header>
<article class="post">
<div class="profile">
<!-- <img class="profile-pic" src="src/png/Ellipse-1.png" alt="프로필 사진"> -->
<div class="user">
<!-- <p class="tit-post">애월읍 위니브 감귤농장</p>
<p class="user-id font-gray">@ weniv_Mandarin</p> -->
</div>
</div>
<div class="cont-following">
<ul class="img-container">
</ul>
<ul class="indicator">
</ul>
<div class="icon-box font-gray">
<button type="button" class="btn btn-like"><img src="./src/svg/Vector.svg"></button>
<span class="count count-heart"></span>
<!-- <button type="button" class="btn btn-comment"><img src="./src/svg/message-circle.svg"></button>
<span class="count count-comment">12</span> -->
</div>
<!-- <p class="date font-gray">2020년 10월 21일</p> -->
</div>
<button class="more-btn2 ">
<img src="src/svg/s-icon-more-vertical.svg" alt="더보기" class="icon-more2">
</button>
</article>
<section class="comment-container">
<div class="comment-view">
<!-- <img src="src/png/Ellipse 6.png" alt="내 프로필 이미지"> -->
<div class="txt-container">
<!-- 댓글리스트 -->
</div>
</div>
</section>
<div class="comment-upload">
<img src="src/png/Ellipse 6.png" alt="내 프로필 이미지" class="comment-user-profile">
<input type="text" placeholder="댓글 입력하기..." class="comment-inp">
<button class="comment-upload-btn">게시</button>
</div>
<div class="post-modal post-modal-report">
<button class="modal-txt-report">신고하기</button>
</div>
<div class="post-modal post-modal-delete">
<button class="modal-txt-delete">삭제</button>
</div>
<div class="post-modal post-modal-mix">
<button class="modal-txt-delete">삭제</button>
<button class="modal-txt-modi">수정</button>
</div>
<div class="alert-box alert-comment-delete">
<p class="alert_notice">댓글을 삭제하시겠어요?</p>
<button class="alert_cancel-button">취소</button>
<button class="alert_action-button alert-action-delete">삭제</button>
</div>
<div class="alert-box alert-comment-report">
<p class="alert_notice">신고하시겠어요?</p>
<button class="alert_cancel-button">취소</button>
<button class="alert_action-button">신고</button>
</div>
<div class="alert-box alert-post-delete">
<p class="alert_notice">게시글을 삭제하시겠어요?</p>
<button class="alert_cancel-button">취소</button>
<button class="alert_action-button alert-action-delete">삭제</button>
</div>
<div class="alert-box alert-post-modi">
<p class="alert_notice">게시글을 수정하시겠어요?</p>
<button class="alert_cancel-button">취소</button>
<button class="alert_action-button alert-action-modi">수정</button>
</div>
<div class="modal-wrapper">
</div>
</div>
</div>
</body>
</html>