<%- include("header") %>

<%= user.username %>

<% if(currentUser.user_id === user.user_id ) { %>

This is your profile page.

<% }; %>

<%= user.username %>'s <%= totalPosts %> post(s):

<% allPosts.forEach((post) => { %>

"<%= post.message %>"

<% }); %>
<%- include("footer") %>