-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ejs
31 lines (27 loc) · 889 Bytes
/
index.ejs
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>All Posts</title>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<h1>Quora Posts</h1>
<% for (post of posts) { %>
<div class="post">
<h3 class="user">@ <%=post.username %></h3>
<h4 class="content">@ <%=post.content %></h4>
<br>
<a href="http://localhost:8080/posts/<%=post.id%>">See in Detail</a>
<a href="http://localhost:8080/posts/<%=post.id%>/edit">Edit</a>
<form method="post" action="/posts/<%=post.id%>?_method=DELETE" >
<button>Delete Post</button>
</form>
</div>
<%} %>
<br>
<br>
<a href="http://localhost:8080/posts/new">Create New Post</a>
</body>
</html>