<%- include('_header', { main_class: "screen-center", body_class: "home-page" }) %>

Secret Messages

<%- include('secrets/_messages') %> <%- include('secrets/_compose_multiple') %>

<%= profile.name %>

<%= profile.description %>

Your Wall

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

Friend Requests

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

Friends

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

Requests Sent

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