<%= post.title %>

<%= post.content %>
By <%= user.username %>

<%- hyperlink_tags(post.tags) %>
Edit
Published: <%= format(fromUnixTime(post.pubdate), config.date_format) %>
Last Modified: <%= format(fromUnixTime(post.editdate), config.date_format) %>
<%- config.seperator %>


<% comments.forEach((comment, postID) => { %> <%- include('../partials/comment', {comment: comment}) %> <% }) %> <%- config.seperator %>