-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex-pulblished.html
106 lines (104 loc) · 4.23 KB
/
index-pulblished.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
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0 maximum-scale=1.0, user-scalable=0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.8.2/css/all.css"
integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="styles.css" />
<title>프로그래머스 페북 리엑트</title>
</head>
<body>
<nav class="navbar fixed-top bg-blue">
<a href="/" class="navbar-brand">
<i class="fab fa-facebook-square" aria-hidden="true"></i>
</a>
<ul class="nav">
<li class="nav-item">
<a href="/login" class="nav-link">
로그인
</a>
</li>
<li class="nav-item">
<a href="/login" class="nav-link">
Harry
</a>
</li>
<li class="nav-item">
<a href="/signup" class="nav-link">
회원가입
</a>
</li>
<li class="nav-item">
<a href="/u/1" class="nav-link">
<img
alt="user image"
src="https://s3.ap-northeast-2.amazonaws.com/grepp-cloudfront/programmers_imgs/learn/course9872/instructor_harry.png"
/>
</a>
</li>
<li class="nav-item">
<a class="nav-link">로그아웃</a>
</li>
</ul>
</nav>
<div class="posts container">
<form class="write-form">
<textarea
class="form-control input-lg"
placeholder="무슨 생각을 하고 계신가요?"
spellcheck="false"
></textarea>
<button type="submit" class="btn btn-primary">
공유하기
</button>
</form>
<div class="card">
<div class="card-body">
<h5 class="card-title">Harry</h5>
<h6 class="card-subtitle text-muted">10분전</h6>
<p class="card-text">안녕하세요. 다같이 리엑트를 배워봅시다. 리덕스도 물런 배워야죠</p>
<hr />
<div class="card-info">
<button type="button" class="thumb-count">
<i class="far fa-thumbs-up">4 개</i>
</button>
<span class="comment-count">
<i class="far fa-comment-alt">3 개</i>
</span>
</div>
</div>
<ul class="comment-list">
<li class="comment">
<div class="comment-info">
<h6 class="comment-writer">Aiden</h6>
<div class="comment-datetime">10분전</div>
</div>
<p class="comment-text">그래요 배워야죠 배워야 남는거죠...</p>
</li>
</ul>
<form class="comment-form">
<textarea
class="form-control input-lg"
placeholder="댓글을 입력하세요..."
spellcheck="false"
></textarea>
<button type="submit" class="btn btn-primary">
댓글달기
</button>
</form>
</div>
</div>
</body>
</html>