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

<%= profile.name %>

<% if (friendshipStatus == "friends") { %>
✅ Friends
<% } %>
<%= profile.description %>
<% if (friendshipStatus == "request_received") { %>

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

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

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

<% } %>
<% if (friendshipStatus == "no_relation") { %>
" method="POST">
<% } else if (friendshipStatus == "friends") { %>
" method="POST">
<% } else if (friendshipStatus == "request_sent") { %>
" method="POST">
<% } else if (friendshipStatus == "request_received") { %>
" method="POST">
" method="POST" style="margin-left: 5px">
<% } else if (friendshipStatus == "request_rejected") { %>
" method="POST">
<% } %> <%- 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') %>