<%- include("partials/header.ejs", {selected: 'home'}) %>
<%if(logged_in_user) {%> <%- include("partials/blog-admin.ejs") %> <%}%>
<% for(post of blog_list) { %> <%- include("partials/blog-entry.ejs", {post:post}) %> <% } %> <%- include("partials/pagination.ejs") %>
<%- include("partials/footer.ejs") %>