<%= post.title %>
<%- func.render_md(post.content) %>
<%= locale.written_by %> <%= user.username %>
<%- func.hyperlink_tags(post.tags) %>
<%= locale.edit_post %>
<%= locale.published %>: <%= func.unix_time_to_date_format(post.pubdate) %>
<%= locale.last_modified %>: <%= func.unix_time_to_date_format(post.pubdate) %>
<%- config.seperator %>
<% comments.forEach((comment, postID) => { %>
<%- include('../partials/comment', {comment: comment}) %>
<% }) %>
<%- config.seperator %>