Author: {{ post.getUser().getName() }}
{% if post.diferenciaHoras <= 12 %}
{{ post.creationDate|date('H:m') }}
{% else %}
{{ post.creationDate|date('Y/m/d H:m') }}
{% endif %}
{{ post.title }}
{{ post.getDescription() }}
{% if post.status == 'draft' %}
{{ post.status }}
{% endif %}
{% if post.diferenciaHoras <= 12 %}
{% if post.status == 'published' %}
New Post
{% endif %}
{% endif %}
{% if post.status == 'scheduled' %}
{{ post.status }}
{% endif %}
{% if post.status == 'locked' %}
{{ post.status }}
{% endif %}
{% if post.status == 'archived' %}
{{ post.status }}
{% endif %}
{% if post.status == 'hidden' %}
{{ post.status }}
{% endif %}