<%- include('form_bare.ejs', { data: [ { label: "" , type: "text" , name: "targetId" , hidden: id }, { label: "" , type: "text" , name: "targetType" , hidden: route }, { label: "Your thoughts..." , type: "textarea" , name: "content" , hidden: route }, ], 'route' : '/api/form/comment' , 'title' : 'Comments' , noCaptcha: true }) -%>
<% for (let comment of comments) { %>
<%= comment.username %>
<%= (new Date(comment.date)+'').split(/(GMT|UTC)/g)[0] %>
<%- comment.content %>
<% } %>