{% extends 'base.welcome.html.twig' %} {% block title %}Detalles del post{% endblock %} {% block content %}
{% if posts|length < 1 %}

There are no publications made

{% endif %}
{% for post in posts %}

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 %}
{% endfor %}
{% endblock %}