<%- include("partials/header.ejs") %>
<% for(post of blog_list) { %> <%- include("partials/post.ejs", {post:post}) %> <% } %>
TAGS
<% for(tag of tags) { %> <%= tag.name %> <% } %>
<%- include("partials/pagination.ejs") %>
<%- include("partials/footer.ejs") %>