%- include("extra/header", { title: thread.title }) %>
<%- include("extra/navbar", {user}) %>
<%= thread.title %>
By
> <%= thread.author.name %>
alt=<%= thread.author.name %>>
<% if (user){ %>
DELETE
<% }; %>
<% messages.forEach(message=>{ %> <% if (message){ %>
<%=new Date(message.time).toLocaleString() %>
alt=<%= message.author.name %>>
> <%= message.author.name %>
:
<%= message.content %>
<% if (user){ %>
DELETE
<%= message.reactCount %>
+🔼
-🔽
<% } %>
<% } else { %>
DELETED MESSAGE
<% } %>
<% }); %>
<% if (user){ %>
Send!
<%} else {%>
Login for send
<% }%>
<% if (user){ %> <% }%> <%- include("extra/footer") %>