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

<%= profile.name %>

<% if (friendshipStatus == "friends") { %>
✅ Friends
<% } %>
<%= profile.description %>
<% if (friendshipStatus == "no_relation") { %>
" method="POST">
<% } else if (friendshipStatus == "friends") { %>
" method="POST">
<% } else if (friendshipStatus == "request_sent") { %>
" method="POST">
<% } else if (friendshipStatus == "request_received") { %>

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

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

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

" method="POST">
<% } %>
" method="POST" style="padding-top: 20px;">

<%= profile.name %>'s Wall

<%- include('_posts', { posts }) %>

Friends

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