<%- include('../layout/header', {title: "Comments", user: user}) %>
<p><a href="/posts/<%= post %>/">Text</a> | 
<% if (!user.banned) { %><a href="/posts/edit/<%= post %>/">Edit</a> | <% } %>Talk</p>
<% title = "Comments" %>
<% if (comments.length == 0) { %>
  <p>Sorry, no comments for this article.</p>
<% } %>
<ul>
  <% comments.forEach(function(comment) { %>
    <%- include('_comment', {comment: comment}) %>
  <% }); %>
</ul>
<br />
<form action="/posts/<%= post %>/comments/" method="post">
  <textarea name="text" rows="4" cols="50">Type your comment here</textarea>
  <input type="hidden" name="user_id" value="<%= user.id %>">
  <input type="hidden" name="post_id" value="<%= post %>">
  <input type="submit" value="Submit" />
</form>