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

<%= profile.name %>

<% if (friendshipStatus == "friends") { %>
✅ Friends
<% } %>
<%= (profile.description || "").substr(0, 70) %>
<% if (friendshipStatus == "request_received") { %>

<%= profile.name %> sent you a friendship request

<% } else if (friendshipStatus == "request_rejected") { %>

You rejected <%= profile.name %> friendship request

<% } %>
<%- include('_friendship_button') %> <%- include('secrets/_compose_single') %>
" method="POST" style="padding-top: 20px;">

<%= profile.name %>'s Wall

<% if (posts.length == 0) { %>
No posts yet
<% } else { %> <%- include('_posts', { posts }) %> <% } %>

Friends

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