1. <% if (comments.length) { %> <% _.each(comments, function(comment) { %>
    1. <%- comment.author.username %>
      <%- comment.author.fullName %> <%- comment.created %> <% if (comment.author.username === currentUser.username) { %> <% } %>
      <%- comment.body %>
    2. <% _.each(comment.replies, function(reply) { %>
    3. <%- reply.author.username %>
      <%- reply.author.fullName %> <%- reply.created %> <% if (reply.author.username === currentUser.username) { %> <% } %>
      <%- reply.body %>
    4. <% }); %>
  2. <% }); %> <% } else { %>
  3. <%- _.__('comment.index.empty') %>

  4. <% } %>