{% extends "content/post.twig" %}

{% block content %}
{% if post['title'] %}
						<h2>
							<a href="$post.url" rel="bookmark" title="${ "Permanent Link to" | translate } &quot;$post.title&quot;">$post.title</a> {% if enabled_modules.comments %}<span>${ "%s Comment" | translate_plural("%s Comments", post.comment_count) | format(post.comment_count) }</span>{% endif %} <span>${ post.created_at | strftime("%B %e" | translate) } <!--${ post.created_at | strftime("%I:%M %p" | translate) }--></span>
						</h2>
{% endif %}
						${ post.body | read_more }
{% endblock %}