<%- include('_header') %>

<%= profile.name %>

<%= profile.description %>

Friends

<%- include('_friends', { friends: friends.friends }) %>

Requests Sent

<%- include('_friends', { friends: friends.requestsSent }) %>
<% if (vanishingMessages.length > 0) { %>

Vanishing Messages

<% vanishingMessages.reverse().map(message => { %>
<% }) %>
<% } %> <% if (friends.requestsReceived.length) { %>

Friend Requests

<% friends.requestsReceived.map(friend => { %>
<%= friend.name %>
<% }) %>
<% } %>

Your Wall

<% if (posts.length > 0) { %> <%- include('_posts', { posts }) %> <% } else { %>
You have no posts yet, publish something!
<% } %>
<%- include('_footer') %>