<%- include('_header') %>
<% entries.map(entry => { %> <% if (entry.content.type == "post") { %>
<%= entry.authorName %>: <%= entry.content.text %>
<% } else if (entry.content.type == "contact") { %>
<%= entry.authorName %> followed <%= entry.content.contactName %>
<% } %> <% }) %> <%- include('_footer') %>