b0ard <%= user.username %>

Direct Messages:

<% DMs.forEach(DM => { %>

From: <%= DM.from %>

Sent: <%= DM.date.toDateString() %>

Last Updated: <%= DM.updated %>

<%= DM.text %>

<% }) %>

Public Messages:

<% allChat.forEach(chat => { %>

From: <%= chat.from %>

Sent: <%= chat.date.toDateString() %>

Last Updated: <%= chat.updated.toDateString() %>

<%= chat.text %>

<% }) %>
+ New Message