<%- include('../partials/head'); %>


<% for (let index = posts.length - 1; index >= 0; index--) { %> <% if (posts[index]["deleted"] != true) { %> <%- include('../posts/timeline', {post: posts[index], postID: index, user: users[posts[index].userID]}); %> <% } %> <% } %>