{% if not data.post %}
Invalid Post.
{% else %}{{ data.post.title }}
Posted
{% if data.post.publishedDate %} on {{ data.post._.publishedDate.format("MMMM Do, YYYY") }} {% endif %} {% if data.post.categories and data.post.categories.length %} in {% for cat in data.post.categories %}{{ cat.name }}{% if loop.index < data.post.categories.length %}, {% endif %}{% endfor %} {% endif %} {% if data.post.author %} by {{ data.post.author.name.first }} {% endif %}
{% if data.post.image.exists %}
{% endif %}
{{ data.post.content.full|safe }}
{% endif %}