<%- include('_header') %>

<%= profile.name %>

<%= profile.description %>
" method="POST" style="margin-top: 20px" > <% if (friendshipStatus == "no_relation") { %> <% } else if (friendshipStatus == "friends") { %> ✅ Friends <% } else if (friendshipStatus == "request_sent") { %> <% } else if (friendshipStatus == "request_received") { %> <% } %>

Friends

<%= profile.name %>'s Wall

Leave <%= profile.name %> a message

" method="POST">
<% posts.map(post => { %> <%- include('_post', { post }) %> <% }) %>
<%- include('_footer') %>