<%- include("partials/document-head.ejs") %> Yet-Another-Blog <%- include("partials/header.ejs") %>
<%if(logged_in_user) {%>
<%}%>
<% 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") %>