<%- include('_header') %>

<%= profile.name %>

<%= profile.description %>

Friends

<% if (vanishingMessages.length > 0) { %>

Vanishing Messages

<% vanishingMessages.map(post => { %>
<% }) %>
<% } %>

Your Wall

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