<%= post.title ? post.title : "Untitled Post" %>
By <%= post.owner.display_name || post.owner.username %>
<%= post.description %>
<%= post.publish_date ? post.publish_date.toLocaleString('en-US', { dateStyle:'medium'}) : "Unknown Publish Date" %>
<% if (logged_in_user) { %>
<%= post.visibility %>
<% if (new Date(post.publish_date) > new Date() && post.visibility !== 'PRIVATE') {%>
Scheduled
<% } %> <% } %>