{% if post.is_published %}
By {{ post.author.first_name }} {{ post.author.last_name }},
on {{ post.published_at | date('d-m-Y') }}
{% if post.updated_at > post.published_at %}
Last updated {{ post.updated_at | date('d-m-Y') }}
{% endif %}
{### INFO FOR MULTI-PAGE POSTS ###}
{% if post.pages | length > 1 %}
Page {{ __SELF__.getRequestedPage }} of {{ post.pages | length }}
{% endif %} {% else %}